Arch-Linux

無法使用 Grub 引導至 Windows 7 分區

  • May 22, 2012

當我嘗試從 GRUB 引導到作業系統時,Windows 7 BOOTMGR 失去。在分區或其他方面,我離專業人士還差得很遠,所以這是 gparted 的圖像:分區硬碟

並複制粘貼/boot/grub/menu.lst

# general configuration:
timeout   10
default   0
color light-blue/black light-cyan/blue

# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*

# (0) Arch Linux
title  Arch Linux
root   (hd0,4)
kernel /vmlinuz-linux root=/dev/sda4 ro
initrd /initramfs-linux.img

# (1) Arch Linux
title  Arch Linux Fallback
root   (hd0,4)
kernel /vmlinuz-linux root=/dev/sda4 ro
initrd /initramfs-linux-fallback.img

# (2) Windows
title Windows Seven 64bit
rootnoverify (hd0,2)
#makeactive
chainloader +1

有人指出我正確的方向來解決這個問題……

編輯:我更改rootnoverify (hd0,1)rootnoverify (hd0,2),結果現在是一個在嘗試啟動後立即重新啟動的系統。(直接回到 BIOS 螢幕)….

chainloader(hd0,0)+1做了這項工作。

引用自:https://unix.stackexchange.com/questions/39109