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

  • 相关阅读:
    [Leetcode] Longest Substring Without Repeating Characters
    [Leetcode] Clone Graph
    [Leetcode] LRU Cache
    行转列
    微信 Demo
    微信开发-step by stemp
    知识库
    SSAS GUID 添加 行计数,非重复计数 等 遇到的莫名其妙的问题
    javascript 前段MVVM 框架
    微信接口开发
  • 原文地址:https://www.cnblogs.com/sunilsun/p/6010664.html
Copyright © 2011-2022 走看看