ubuntu22.04.4锁定内核应对海光服务器升级内核无法启动问题

文章目录


ubuntu锁定内核的操作记录


一、场景

项目上来了几台海光的服务器,操作系统是ubuntu2204的,就尝试这安装服务,发现安装的时候内核会自动升级,升级之后新内核无法正常引导启动。进行锁内核的操作。

二、机器信息

1.内核信息

hostnamectl :

shell 复制代码
 Static hostname: XXX
       Icon name: computer-server
         Chassis: server
      Machine ID: cd19257cdbca45849b97eabbb12b8de5
         Boot ID: 4ded862beb7045c79d82c885114d4aab
Operating System: Ubuntu 22.04.4 LTS              
          Kernel: Linux 5.15.0-94-generic
    Architecture: x86-64
 Hardware Vendor: Suma
  Hardware Model: R6240H0

2.CPU信息

lscpu:

shell 复制代码
Architecture:            x86_64
  CPU op-mode(s):        32-bit, 64-bit
  Address sizes:         48 bits physical, 48 bits virtual
  Byte Order:            Little Endian
CPU(s):                  64
  On-line CPU(s) list:   0-63
Vendor ID:               HygonGenuine
  Model name:            Hygon C86 7380 32-core Processor
    CPU family:          24
    Model:               2
    Thread(s) per core:  2
    Core(s) per socket:  32
    Socket(s):           1
    Stepping:            2
    BogoMIPS:            4400.19
    Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid amd_dcm aperfmperf r
                         apl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb
                          bpext perfctr_llc mwaitx cpb hw_pstate ssbd ibpb vmmcall fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmc
                         b_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca sme sev sev_es
Virtualization features: 
  Virtualization:        AMD-V

三、锁定内核

编辑/etc/default/grub文件

修改前

shell 复制代码
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX=""

修改GRUB_DEFAULT锁定当前内核

shell 复制代码
GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 5.15.0-94-generic"
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX=""

更新grub信息

shell 复制代码
update-grub

总结

国产化加油!!

相关推荐
emfuture10 小时前
工业自动化现场四大典型故障复盘:从环境适配到边缘智能的工程实践
运维·网络·自动化
星栈独行10 小时前
Node 接口该写同步还是异步?
服务器·开发语言·后端·程序人生·node.js
笑锝没心没肺10 小时前
yum update 报错:GPG key retrieval failed: [Errno 14] HTTPS Error 404 - Not Found
linux·运维·服务器
keke.shengfengpolang10 小时前
自动化专业毕业能干什么?制造业、控制、软件、数据怎么选,2026版大实话
运维·自动化
汤永红11 小时前
gtk-x11-2.0.so.0
linux·运维·服务器
公众号:fuwuqiBMC11 小时前
(转自“服务器BMC”)服务器BMC芯片功能——网口
运维·服务器
爱学习的小可爱卢11 小时前
SpringCloud——微服务排错实战:从Gateway到Feign全链路解析
运维·springcloud
XIAOYU67201311 小时前
自动化考什么证书对就业有帮助?大学生就业规划与证书路线全攻略
运维·自动化
Yana.nice11 小时前
Linux logrotate 日志切割未生效
linux·运维·服务器
运维老郭11 小时前
Ubuntu下编译安装Redis:从0到1可用的完整指南
运维·云原生