Ubuntu 升級到 16.04 後 Windows7 無法啟動

Ubuntu 升級到 16.04 後 Windows7 無法啟動

我最近將 ubuntu 升級到 16.04,但我的雙啟動安裝不再起作用。 Ubuntu 載入正常,但 Win7(loader) 停止在黑畫面上閃爍遊標。我嘗試了一些解決方案,例如啟動修復。顯然修復過程中出現了一些問題,我不明白。

我有兩個獨立的 500GB 磁碟,並且 Windows 安裝已存在且正常,因為 ubuntu 將其識別為連接媒體。

這是引導修復建議我發布的內容:http://paste2.org/GvYJpMWe

謝謝你的幫忙!

答案1

Grub 或此論壇可能不是修復 Windows 的最佳資源。 https://superuser.com/可以為修復Windows提供更好的支援。從您的訊息內容來看,Grub 工作正常,並為您提供了啟動到OS似乎已損壞的選項。

您可以啟動到 Windows 的安裝媒體並使用其修復選項,這很可能會破壞 grub,但會還原您的 Windows。當 Windows 重新工作後,重新安裝 grub。

重新安裝 Grub 的過程很簡單,分為五個步驟:

1) boot to the Ubuntu installation disk
2) Run the "Try Ubuntu" option
3) Bring up a terminal (Launch search "terminal")
4) Run these commands (exactly):
    a) sudo mount /dev/sdaX /mnt  # Make "X" the partition that has Ubuntu installed (i.e. /dev/sda2).
    b) for i in /sys /proc /run /dev; do sudo mount --bind "$i" "/mnt/$i"; done
    c) sudo chroot /mnt
    d) update-grub
    e) grub-install /dev/sdX (X is the hard drive that has linux installed (i.e. /dev/sda)
5) Reboot the system

答案2

要修復雙啟動問題,您需要使用 ubuntu 16.04 安裝碟啟動並在終端機上執行以下命令:

grub2-mkconfig

如果一切順利,您現在應該能夠重新啟動進入 Windows。

相關內容