Bochs : could not read the boot disk
本报错是在做《操作系统真象还原》内的实验遇到的 如果问题不是出在img文件的第一个扇区最后两个字节没有置为0x55aa的话 可以查看一下img文件是否是512KB 如果是的话应该是dd指令有少添加了 conv=notrunc 重新制作img再重新写入即可解决问题
dd if=/yourpath/xx.bin of=/yourpath/xx.img bs=512 count=1 conv=notrunc
dd if=/yourpath/xx.bin of=/yourpath/xx.img bs=512 count=1 conv=notrunc