Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux操作系統引導記錄的備份與恢復方法

Linux操作系統引導記錄的備份與恢復方法

日期:2017/2/7 16:58:35      編輯:Linux教程

備份linux的主引導記錄(MBR):

root用戶進入shell ,執行:

dd if=/dev/hda of=/boot.bak bs=512 count=1

將保存MBR恢復到boot.grub中。

寫入MBR

dd if=/boot.bak of=/dev/hda

或是使用工具如:diskgen等來寫入此文件;

以為內容未經證實,是網上摘抄的:

掛載C盤到linux分區中,拷貝mbr文件到c盤根目錄下,找到windows引導文件boot.ini,在最後行添加C:\boot.bak=ubuntu 即可。文件內容類似於:

[boot loader]
timeout=10
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect
C:\boot.bak=ubuntu

重啟進入linux系統後,打開shell,執行:

dd if=/mnt/hda1 of=/dev/hda

就恢復回原來的GRUB引導程序了。

Copyright © Windows教程網 All Rights Reserved