我使用两个命令创建了iso文件:
> dd if = / dev / cdrom of = filename
> cp / dev / cdrom filename
这两者之间有什么区别,两者都对我有用.
解决方法
对于复制CD,两者都很好,虽然我通常通过这样做来明确地设置块大小
dd if=/dev/cdrom of=cdrom.iso bs=512
对于其他块设备,如果设备上的块大小是意外的,则cp可能不起作用.
从http://en.wikipedia.org/wiki/Dd_(Unix)起
Note that an attempt to copy the entire disk image using cp may omit the final block if it is an unexpected length; dd will always complete the copy if possible.