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,于是把这两项去掉重新尝试了下,也可以成功。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM