I have created iso files by using two commands:
- dd if=/dev/cdrom of=filename
- cp /dev/cdrom filename
What's the difference between the two, both have worked for me.
|
feedback
|
|
For copying CDs then both are fine although I generally expliciatlly set the block size by doing
For other block devices then cp might not work if the block size on the device is unexpected. From http://en.wikipedia.org/wiki/Dd_(Unix)
| |||||||||||
feedback
|
|
There's effectively no difference, some very minor caveats aside. Both
| |||
|
feedback
|
|
Using the dd command allows for a "byte-exact" copy of the specified input. If the dd command is used on a disk rather than the cdrom, it will be able to copy previously deleted files which cannot be seen by the cp command from the filesystem interface. But since you are using /dev/cdrom as the input (which doesn't have the same structure as a disk), there are no previously deleted files on the interface, so the commands should work exactly the same. for more information: http://en.wikipedia.org/wiki/Dd_(Unix) | |||||||||||
feedback
|