博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu 10.10显示grub菜单
阅读量:5127 次
发布时间:2019-06-13

本文共 895 字,大约阅读时间需要 2 分钟。

安装ubuntu10.10后,如果机器上只有一个系统,默认grub菜单是不会显示的,如果想要显示,按如下步骤操作:

1.把/etc/default/grub文件中的GRUB_HIDDEN_TIMEOUT=0的0改为大于0的数字,比如5;

2.把/etc/grub.d/30_os-prober文件中的所有set timeout=0的0改为10,如下:

adjust_timeout () {

  if [ "x${found_other_os}" = "x" ] ; then

    if [ "x${GRUB_HIDDEN_TIMEOUT}" != "x" ] ; then

if [ "x${GRUB_HIDDEN_TIMEOUT_QUIET}" = "xtrue" ] ; then

verbose=

      else

verbose=" --verbose"

      fi

 

 

      if [ "x${GRUB_HIDDEN_TIMEOUT}" = "x0" ] ; then

cat <<EOF

if [ /${timeout} != -1 ]; then

  if keystatus; then

    if keystatus --shift; then

      set timeout=-1

    else

      set timeout=10

    fi

  else

    if sleep$verbose --interruptible 3 ; then

      set timeout=10

    fi

  fi

fi

EOF

      else

cat << EOF

if [ /${timeout} != -1 ]; then

  if sleep$verbose --interruptible ${GRUB_HIDDEN_TIMEOUT} ; then

    set timeout=10

  fi

fi

EOF

      fi

    fi

  fi

}

 

 

 

来自:http://blog.chinaunix.net/u2/61800/showart_2371499.html

转载于:https://www.cnblogs.com/libao/archive/2012/12/08/2808497.html

你可能感兴趣的文章
十分钟轻松让你认识Entity Framework 7
查看>>
Web开发框架之权限管理系统
查看>>
SQL Server索引语法 <第四篇>
查看>>
react新手报错日记
查看>>
Android 上传文件到 FTP 服务器
查看>>
参考性文章,也算有用吧
查看>>
javaScriptObject转String
查看>>
UE4 优化参数
查看>>
西数常用TREX命令
查看>>
SpringMVC学习笔记1
查看>>
每天拿出来2小时浪费
查看>>
NSBundle pathForResource取不到值问题
查看>>
fiddler抓取https失败解决方案
查看>>
Windows定时任务没有执行
查看>>
Hexo瞎折腾系列(2) - 添加背景图片轮播
查看>>
vs------各种错误解决方法
查看>>
JavaScript基础---语言基础(3)
查看>>
团队站立会议08
查看>>
IOI1998 Polygon [区间dp]
查看>>
硬链接和符号链接的区别
查看>>