CentOS 6.x 核心升級
阿新 • • 發佈:2018-11-09
文章目錄
說明:系統版本 CentOS 6.9 X64
在CentOS 6.9上安裝Docker容器,發現核心版本過低,目前是2.6,作業系統是6.9 x86_64位,因此需要升級核心到3.8及以上穩定版本。
因為只有64位版本才支援安裝,所以需要首先檢查系統版本和位數
- cat /etc/redhat-release
- getconf LONG_BIT
CentOS6.9 核心升級
檢查核心當前版本
首先 uname -a 檢視當前
2.6.32-431.23.3.el6.x86_64 #1 SMP Thu Jul 31 17:20:51 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
匯入金鑰
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
安裝yum源
rpm -Uvh http://www.elrepo.org/elrepo-release-6-8.el6.elrepo.noarch.rpm
安裝核心
yum --enablerepo=elrepo-kernel install kernel-lt -y
等待安裝完畢
提示 Complete! 表示安裝完成
修改預設啟動核心
vim /etc/grub.conf
顯示如下資訊
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title CentOS (4.4.161-1.el6.elrepo.x86_64) //0
title CentOS (2.6.32-754.6.3.el6.x86_64) //1
title CentOS (2.6.32-696.13.2.el6.x86_64) //2
title CentOS (2.6.32-431.el6.x86_64) //3
default=0 //選擇啟動第一個核心
重啟生效
重新啟動 檢視是否生效