Centos Windows 双系统 修改默认启动项
程序员文章站
2022-07-14 15:41:16
...
安装Centos Windows双系统后,开机只有Centos系统,添加windows 10系统选项过程如下:
1、切换到管理员模式,
[[email protected] ~]$ su root
密码:
2、打开启动项配置文件,添加Windows 10启动项代码,
[[email protected] ou]# cd /boot/grub2
[[email protected] grub2]# gedit grub.cfg
在第一个menuentry 前面,加入如下启动代码:
menuentry 'Windows 10' {
set root=(hd0,1)
chainloader +1
}
3、开机启动时,桌面会多出Windows 10 选项。此时默认选中Centos系统,若要修改默认选项为Windows 10,需进行以下操作:
4、查看默认启动系统,
[[email protected] grub2]# cat grubenv
显示如下
# GRUB Environment Block
saved_entry=CentOS Linux (3.10.0-514.6.1.el7.x86_64) 7 (Core)
5、修改默认选项
[[email protected] grub2]# grub2-set-default "Windows 10"
6、检查默认选项
[[email protected] grub2]# grub2-editenv list
saved_entry=Windows 10
[[email protected] grub2]#
转载于:https://my.oschina.net/ouyushan/blog/1168145
上一篇: ubuntu20.04安装MySQL