![]() |
![]() |
||||
| What's happening | |||||
Making an ISO file from a DVD on Linux
Use dd to convert a DVD or CD into an ISO file. for cygwin special filenames, see http://www.cygwin.com/cygwin-ug-net/using-specialnames.html this explains device fixed links as (ls /dev does not work but certain paths do, i.e., /dev/sr0) "The new fixed POSIX names are mapped to NT internal devices as follows: /dev/st0 \device\tape0, rewind " Use the dd command to create an ISO image: on linux dd if=/dev/dvd of=/tmp/mydvd.iso on cygwin dd if=/dev/sr0 of=/cygdrive/c/temp/cdrom.iso (sr0 is sr<zero> which means the first cdrom of the system, see above cygwin special filenames link) to access the contents of this ISO image you can mount it and access it like a normal DVD player:mkdir /mnt/iso umount -d /mnt/iso "If you use this to (legally) backup your DVD collection, you can play them back using VLC Media Player. This lets you 'open a disc' and you can use the URL dvd:///mnt/iso to access it like it was in the DVD tray. Very cool! Its nice having the whole disk as one file, which you can mount when you like to access the individual files. No more messing around finding disks and having problems reading them when they get scratched."2006-10-15 05:46:06 GMT
|
|||||
