zoukankan      html  css  js  c++  java
  • 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,于是把这两项去掉重新尝试了下,也可以成功。

  • 相关阅读:
    BZOJ1087=Codevs2451=洛谷P1896&P2326互不侵犯
    poj1286
    P1066 2^k进制数
    开车旅行
    洛谷P1396 营救
    poj1840
    poj3693
    poj1195
    3955 最长严格上升子序列(加强版)
    1021 玛丽卡
  • 原文地址:https://www.cnblogs.com/sunilsun/p/6010664.html
Copyright © 2011-2022 走看看