Linux

centos8 grub2 change default kernel

Naan 2020. 5. 15. 11:55
320x100

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

 

 

320x100