如何配置Windows 10 CentOS 7双启动
时间:2020-02-23 14:30:22 来源:igfitidea点击:
本教程将向我们展示如何使用Windows 10轻松轻松双启动CentOS 7.
这应该为双启动CentOS 7使用Windows 7和Windows 8.
默认情况下,CentOSAnaconda安装程序不会配置GRUB以处理NTFS文件系统或者分区。
。
使用Windows 10双引导CentOS 7需要手动干预。
如何使用Windows 10双启动CentOS 7
启动到CentOS 7计算机并安装包含Windows安装的分区。
我们可以安装gparted
disk partition manager以拍摄Windows分区,只需在终端中执行以下命令
sudo yum -y install epel-release sudo yum install -y gparted sudo gparted
为了能够在CentOS 7上安装NTFS文件系统,安装以下程序。
sudo yum -y install ntfs-3g fuse ntfsprogs ntfsprogs-gnomevfs
编辑/etc/grub.d/40_custom
文件。
首先备份它。
sudo cp /etc/grub.d/40_custom /etc/grub.d/40_custom.original
然后编辑 /etc/grub.d/40_custom
文件,用VI编辑器或者Nano打开它。
sudo vi /etc/grub.d/40_custom
在底部添加以下行
Menuentry "Windows" { set root=(hd0,3) chailoader +1 }
我们可以在""中更改""以反映Windows操作系统版本的菜单条目标题菜单虽然没有必要。
行root =(hd0,3)表示第一个硬盘驱动器上的第四个分区。
替换3使用从下面图片的Windows 10分区以来从GParted取自GParted的Windows分区编号是/dev/sda3
运行
sudo grub2-mkconfig -o /boot/grub2.cfg
如果包含Windows详细信息,请检查新配置
sudo cat /boot/grub.cfg
重新启动系统
sudo reboot