|
|
Sponsored Links
|
Maxabout.com > Tips
Make Iso From CdAdded on:9/1/2008 11:36:00 PM In Linux Tips Rated by 1 users
Sure we all know the command to burn a CD from an ISO with cdrecord: CODE # cdrecord dev=/dev/hdc example.iso
- Now we will reverse the process and I will show you 2 different ways how to make an ISO from a CD:
CODE # cat /dev/hdc > example.iso
- And
CODE # dd if=/dev/hdc of=example.iso bs=2048 conv=notrunc
- Both commands do exactly the same, but the first one might be easier to remember.
- NOTE: You use the /dev device in both cases and not the place where it is mounted ( /mnt ).
|
Sponsored Links
Tools
Bookmark/Discuss
|
|
|