博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
rhel7/oel7上修改默认内核启动顺序的方法
阅读量:6471 次
发布时间:2019-06-23

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

hot3.png

image.php?url=0JuzUY3XVI和 rhel6的默认启动顺序的修改方法,不太一样,需要使用grub2来修改。具体如下,

比如想修改  Server, with  3.10.0-123.el7.x86_64作为默认的启动项,
--首先找到各菜单项 menuentry
[root@ ~]# cat //grub2/grub.cfg | Oracle Linux Server
menuentry 'Oracle Linux Server, with Linux 3.10.0-123.el7.x86_64' --class  --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-123.el7.x86_64-advanced-255a4ef5-766f-4992-baaa-a1b3c5488b33' {
menuentry 'Oracle Linux Server, with Unbreakable Enterprise Kernel 3.8.13-35.3.1.el7uek.x86_64' --class oracle --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.8.13-35.3.1.el7uek.x86_64-advanced-255a4ef5-766f-4992-baaa-a1b3c5488b33' {
menuentry 'Oracle Linux Server, with Linux 0-rescue-171210b6f8734bbe81074e4c0306c0f3' --class  --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-171210b6f8734bbe81074e4c0306c0f3-advanced-255a4ef5-766f-4992-baaa-a1b3c5488b33' {
if [ "x$default" = 'Oracle Linux Server, with Linux 3.10.0-123.el7.x86_64' ]; then default='Advanced options for Oracle Linux Server>Oracle Linux Server, with Linux 3.10.0-123.el7.x86_64'; fi;
--设置Oracle Linux Server, with Linux 3.10.0-123.el7.x86_64作为默认的启动项
[root@dbserver ~]# grub2-set-default "Oracle Linux Server, with Linux 3.10.0-123.el7.x86_64"

image.php?url=0JuzUYThIC

 

--验证默认启动项

[root@dbserver ~]# grub2-editenv list
saved_entry= Server, with  3.10.0-123.el7.x86_64
--自动生成GRUB2配置文件
[root@ ~]# grub2-mkconfig -o //grub2/grub.cfg
下次重启,就会默认自动启动第一项了。

image.php?url=0JuzUYT4Zk

转载于:https://my.oschina.net/u/3761438/blog/1939508

你可能感兴趣的文章
基于react的滑动图片验证码组件
查看>>
iOS快速清除全部的消息推送
查看>>
java单例模式深度解析
查看>>
什么是堆、栈?
查看>>
【学习笔记】阿里云Centos7.4下配置Nginx
查看>>
VuePress手把手一小時快速踩坑
查看>>
dnsmasq安装使用和体验
查看>>
学习constructor和instanceof的区别
查看>>
Vijos P1881 闪烁的星星
查看>>
ABP理论学习之领域服务
查看>>
Qt 控制watchdog app hacking
查看>>
让所有IE支持HTML5的解决方案
查看>>
RDD之五:Key-Value型Transformation算子
查看>>
Windows 搭建Hadoop 2.7.3开发环境
查看>>
python操作mysql数据库实现增删改查
查看>>
percona 5.7.11root初始密码设置
查看>>
Cognitive Security的异常检测技术
查看>>
Impress.js上手 - 抛开PPT、制作Web 3D幻灯片放映
查看>>
生活杂事--度过十一中秋
查看>>
Pyrex也许是一个好东西
查看>>