Earlier today, I was furiously trying to find a utility on Linux to take a CD/DVD and create an ISO image from it. I was coming up dry and was feeling a bit frustrated until I stumbled onto this website. Once I read it I felt like a complete moron. Why did I feel so stupid? One of the great things about Linux, BSD, Mac OS X and pretty much every other OS descended from Unix is that everything is a file. Literally everything. And I had forgotten that disc drives (including optical drives) fall well within the category of "everything".
Thus the way to create an ISO image from a CD/DVD is as simple as running the following from the terminal:
cat /dev/cdrom > /home/user/path/to/image.iso
That's it. Simply redirect the output of CD/DVD device into a file. Easy, right?
No comments:
Post a Comment