wiki_MBR.pdf dd_rescue_mbr.pdf 硬盘大致结构
MBR====>主引导记录区,在硬盘的0000~01FF地址内
1、在windows下用winhex打开mbr扇区代码
2、在linux下:
1、首先使用fdisk -l 确定MBR位置。
备份MBR:
dd if=/dev/sda1 of=/root/mbr bs=512 count=1
恢复MBR:
dd if=/root/mbr of=/dev/sda1 bs=512 count=1
恢复分区表:
dd if=/root/mbr of=/dev/sda1 bs=512 skip=446 count=66
注:mbr大小512 所以bs=512 count=1
bs=512 skip=446 count=66 用来确定分区表在备份文件中的位置
2、
使用vim -b file(注:-b选项不使用可能会出问题) 打开mbr文件,在vim中用:%!xxd转换为16进制文件
阅读(2489) | 评论(0) | 转发(0) |