CentOS7.3机时的菜单选择时间由5秒缩短为2秒

December 09, 2023
测试
测试
测试
测试
1 分钟阅读

CentOS7开机时的菜单选择时间由5秒缩短为2秒

CentOS7开机时的菜单选择时间由5秒缩短为2秒,尝试过修改:

[root@centos7 ~] #2> vim /etc/default/grub

修改无效!  也直接修改过:

[root@centos7 ~] #3> vim /boot/grub2/grub.cfg

修改也无效!  真正起作用的是下句代码:

[root@centos7 centos] #16> vim /boot/efi/EFI/centos/grub.cfg

修改centos/grub.cfg中的以下部分内容后重启CentOS7,OK!

#将开机时的菜单选择时间由5秒缩短为2秒
#将set timeout=5修改为set timeout=2即可
if [ x$feature_timeout_style = xy  ] ; then
    set timeout_style=menu
    set timeout=2
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
else
    set timeout=2                                                                 
fi

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多