• ubuntu grub配置


    一、Grub 2包含如下几部分内容:
    1、/boot/grub/grub.cfg 文件
    2、/etc/grub.d/ 文件夹
    3、/etc/default/grub 文件

    二、配置和意义:

    1、修改grub文件路径为/etc/default/grub,该文件内容如下所示:

    # If you change this file, run 'update-grub' afterwards to update /boot/grub/grub.cfg.

    GRUB_DEFAULT=0 #将0改为saved,可让grub记住上次启动时选择的系统
    GRUB_HIDDEN_TIMEOUT=0
    GRUB_HIDDEN_TIMEOUT_QUIET=true
    GRUB_TIMEOUT="5" #显示Grub菜单的时间
    GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    GRUB_CMDLINE_LINUX=""

    # Uncomment to disable graphical terminal (grub-pc only)
    #GRUB_TERMINAL=console

    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    #GRUB_GFXMODE=640x480

    # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
    #GRUB_DISABLE_LINUX_UUID=true

    # Uncomment to disable generation of recovery mode menu entrys
    #GRUB_DISABLE_LINUX_RECOVERY="true"

    2、修改后执行update-grub,/boot/grub/grub.cfg文件会被更新;

    3、若想修改/boot/grub/grub.cfg内文件内容,需先更改其权限,将默认生成的444权限改为777权限。

  • 相关阅读:
    javascript中的光标
    jQuery插件使用大全
    marginCollapse之兄弟关系的DIV
    margin collapse 之父子关系的DIV
    选择符优先级-----:link伪类
    a标签包input引起的问题
    关于inline-block的间隙问题
    创意输入框
    Unity3D教程宝典之Shader篇:第十四讲Surface Shader
    Unity3D教程宝典之Shader篇:第十三讲 Alpha混合
  • 原文地址:https://www.cnblogs.com/wangzhigang/p/5328190.html
Copyright © 2020-2023  润新知