Grub被破壞,修復MBR

2021-05-08 06:05:50 字數 666 閱讀 1044

$在 rescue 模式下修復 mbr:

# >1< 破壞 grub 使之不能啟動;

[bady]#   dd if=/dev/zero of=/dev/sda bs=446 count=1;reboot

# >2< 從光碟/軟盤啟動輸入 linux rescue 進入 rescue 模式;

sh-2.05b# mount       /* 以讀寫模式載入硬碟檔案,進入後用 mount 檢查檔案系統載入是否正確 */

sh-2.05b# fdisk -l /dev/sda     /* 檢視分割槽情況 */

sh-2.05b# cat /mnt/sysimage/boot/grub/grub.conf  /* 要注意:硬碟載入在/mnt/sysimage 目錄下,檢查 grub.conf 檔案 */

sh-2.05b# chroot /mnt/sysimage    /* 使 /mnt/sysimage 成為 grub-install 認為的系統得根 */

sh-2.05b# grub-install /dev/sda    /* 載入 chroot shell,執行 grub-install */

sh-2.05b# exit       /* 退出 chroot shell */

sh-2.05b# exit       /* 退出 rescue 模式 */

雙系統Grub修復MBR

動機 雙系統 grub 修復 mbr 前提 ubuntu 9.04,其它系統方法類似 適用情況 不同分割槽上安裝了 windows 和 linux 雙系統,並且 linux 引導程式 grub 預設安裝在 mbr 上 問題描述 重灌 windows 後,破壞了 mbr 中的 grub 導致 linu...

實驗 破壞centos的grub並修復

1.破壞本機grub stage1,而後在救援模式下修復之 檢視grub stage1 的內容hexdump c n 446 dev sda備份mbr的內容dd if dev sda of data mbr bs 1 count 512清空grub stage1的內容dd if dev zero o...

Linux中怎樣備份 破壞 修復MBR扇區故障

前言 當主引導扇區發生故障時,將可能無法進入引導選單,或者因無法找到正確的分割槽位置而無法載入系統,通過該硬碟引導主機時很可能進入黑屏狀態。mbr是什麼 每個硬碟都有mbr master boot record 主引導記錄 硬碟的0柱面 0磁頭 1扇區稱為主引導扇區 mbr大小512位元組,分為三個...