首页 > 代码库 > mbr的恢复与备份

mbr的恢复与备份

     备份MBR分区 
1.使用fdisk -l 确定MBR位置 
2.备份MBR 
dd if=/dev/sda of=/root/mbr bs=512 count=1 
3.恢复MBR 
dd if=/root/mbr of=/dev/sda bs=512 count=1 
4.恢复分区表 
dd if=/root/mbr of=/dev/sda bs=512 skip=446 count=66 
注:mbr大小512 所以bs=512 count=1 
bs=512 skip=446 count=66 用来确定分区表在备份文件中的位置

本文出自 “蓝叶子Sheep” 博客,请务必保留此出处http://dellinger.blog.51cto.com/12445009/1915683

mbr的恢复与备份