ArchLinux+Win10双系统的Grub配置

解决:ArchLinux+Win10双系统,Grub设置

原装的Win10,装完ArchLinux后,要进入Win10一段时间只能通过boot选择。

Grub的菜单里并没有。Grub安装过程是参考wiki来安装的。

今天仔细尝试了下,终于解决。

编辑/etc/grub.d/40_custom

# nano /etc/grub.d/40_custom

 修改成如下内容

#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

menuentry "System shutdown" {
	echo "System shutting down..."
	halt
}

menuentry "System restart" {
	echo "System rebooting..."
	reboot
}

 执行命令

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

 

tips: 刚开始的时候,也是修改成wiki 多系统启动中的内容,带"Microsoft Windows 8.1"和“Microsoft Control Center”,后来发现执行完上述命令后,Grub菜单中自动多出来个“Windows Boot Manager”,而且可以进入Win10,于是把这两项去掉重新尝试了下,也可以成功。

posted @ 2016-10-29 12:50  桐城东旭  阅读(4675)  评论(0编辑  收藏  举报