我已成功安装了 Ubuntu 11.10 和 Windows 7。在安装过程中,我手动更改了 Windows 分区大小(使用了 24Gb,我将虚拟分区大小从 100Gb 更改为 40Gb),并删除了 Windows 存储系统恢复数据的 150Mb 分区。我在第二个虚拟分区上安装了 Ubuntu。
因此现在当 GRUB 启动时它无法看到 Windows 安装程序。我认为 Windows 加载程序没有问题,只是 GRUB 不知道它。
所以我需要手动指定。在哪里以及如何指定?
答案1
从 Ubuntu 运行此命令:
sudo update-grub
然后重新启动。
Windows 现在应该在 Grub 菜单中。
答案2
编辑 Grub 菜单
gksudo gedit /boot/grub/menu.lst
# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sdb1
title Windows 7
root (hd1,0)
savedefault
makeactive
map (hd0) (hd1)
map (hd1) (hd0)
chainloader +1
编辑/etc/fstab
以便 Windows 分区在 Linux 中可访问:
sudo apt-get install ntfs-config
sudo ntfs-config
/media
为 Windows 分区添加挂载点
我认为这会对你有帮助