在 Windows 7 上安装 Redhat 6 后找不到操作系统

在 Windows 7 上安装 Redhat 6 后找不到操作系统

我已经在 Windows 7 上安装了 Red hat,现在我可以使用 Red Hat 操作系统,但不能使用 Windows 7 我得到的引导选项为 Linux 和其他,但每当我选择“其他”引导选项时,我都会收到“Operating”消息找不到系统,您可以使用 Ctrl+Alt+Del 重新启动“

答案1

您可能尚未将 Windows 添加到引导加载程序。启动进入 Linux 并运行

sudo grub-mkconfig -o /boot/grub/grub.cfg

这将生成您的 GRUB 配置文件。如果您安装了多个操作系统,请确保上面的命令列出了所有操作系统。例如:

$ sudo grub-mkconfig -o /boot/grub/grub.cfg
Generating grub.cfg ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Found linux image: /boot/vmlinuz-3.10-2-amd64
Found initrd image: /boot/initrd.img-3.10-2-amd64
Found linux image: /boot/vmlinuz-3.2.0-4-amd64
Found initrd image: /boot/initrd.img-3.2.0-4-amd64
Found linux image: /boot/vmlinuz-3.2.0-3-amd64
Found initrd image: /boot/initrd.img-3.2.0-3-amd64
Found linux image: /boot/vmlinuz-3.2.0-2-amd64
Found initrd image: /boot/initrd.img-3.2.0-2-amd64
Found memtest86+ image: /boot/memtest86+.bin
Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin
Found Windows 7 (loader) on /dev/sda2
done

仔细检查 Windows 是否已列出。现在,将 grub 安装到驱动器的 MBR(记住更改/dev/sda为您实际想要安装它的驱动器)

sudo grub-install /dev/sda
sudo grub-install --recheck /dev/sdb

现在重新启动,您应该能够启动进入 Windows。如果不能,或者命令grub-mkconfig没有列出任何 Windows 操作系统,请确保您没有在 Windows 分区上安装 RedHat。如果这样做,您将必须重新安装 Windows。

相关内容