centos8 default kernel 변경 하기.
# uname -a
Linux test 4.18.0-147.8.1.el8_1.x86_64 #1 SMP Thu Apr 9 13:49:54 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
현재 버전은 4.18.0-147.8.1.el8_1.x86_64 이다.
4.18.0-147.el8.x86_64 로 변경해보자.
default kernel 버전 확인
# grubby --default-kernel
/boot/vmlinuz-4.18.0-147.8.1.el8_1.x86_64
설치되어 있는 커널 버전 확인
# ls -al /boot/vmlinuz-*
-rwxr-xr-x. 1 root root 8106744 May 7 04:55 /boot/vmlinuz-0-rescue-427d8a5ddd9e4ad0835af1ab52d0c22c
-rwxr-xr-x. 1 root root 8106744 Apr 9 22:56 /boot/vmlinuz-4.18.0-147.8.1.el8_1.x86_64
-rwxr-xr-x. 1 root root 8106744 Dec 5 06:58 /boot/vmlinuz-4.18.0-147.el8.x86_64
커널 변경하기
# grubby --set-default /boot/vmlinuz-4.18.0-147.el8.x86_64
The default is /boot/loader/entries/427d8a5ddd9e4ad0835af1ab52d0c22c-4.18.0-147.el8.x86_64.conf with index 1 and kernel /boot/vmlinuz-4.18.0-147.el8.x86_64
바뀐것을 확인 할 수 있다.
# grubby --default-kernel
/boot/vmlinuz-4.18.0-147.el8.x86_64
재부팅 하면 된다.
# reboot
'Linux' 카테고리의 다른 글
git Peer's Certificate issuer is not recognized. 인증서 추가 (0) | 2020.05.20 |
---|---|
nfsd: too many open connections, consider increasing the number of threads. (0) | 2020.05.19 |
centos 8 nis setting (0) | 2020.05.14 |
ECMInstallIcons (0) | 2020.05.13 |
configure: error: Please install makeinfo before installing (0) | 2020.05.08 |