用Linux的dd命令制作U盘启动盘时,出现‘isolinux.bin missing or corrupt'错误
dd命令使用参考
http://jingyan.baidu.com/article/d45ad148e203f969552b800a.html
在dd后,需要把优盘再次格式化为fat32文件系统,参考
Linux下把U盘格式化为fat32
http://jingyan.baidu.com/article/066074d6737352c3c21cb0d0.html
1.iso文件刻录(Linux平台下)
U盘资料备份好,iso文件准备好,确定U盘设备号,假定为/dev/sdc,则使用命令:
dd if=<file> of=/dev/sdc bs=4M; sync
(注意不是/dev/sdc1,否则会出现‘isolinux.bin missing or corrupt'错误)
参考命令:http://www.debian.org/CD/faq/index.en.html#write-usb
dd if=<file> of=<device> bs=4M; sync
where:
<file> is the name of the input image, e.g. netinst.iso
<device> is the device matching the USB flash drive, e.g. /dev/sda, /dev/sdb. Be careful to make sure you have the right device name, as this command is capable of writin