부팅 시 기본 커널을 선택하는 방법을 설명하겠습니다.
명령어로 현재 사용중인 커널을 확인하겠습니다.
[root@localhost ~]# uname -r 혹은
[root@localhost ~]# grub2-editenv list |
부팅 가능한 커널의 리스트를 확인하겠습니다.
[root@localhost ~]# grep ^menuentry /boot/grub2/grub.cfg | cut -d “‘” -f2 CentOS Linux (3.10.0-862.9.1.el7.x86_64) 7 (Core) CentOS Linux, with Linux 3.10.0-123.el7.x86_64 CentOS Linux, with Linux 3.10.0-123.4.2.el7.x86_64 CentOS Linux, with Linux 0-rescue-b01d3ac3043f4942843942e5580f3151 |
총 4개의 커널을 사용할 수 있습니다.
부팅 시에 자동으로 선택되어 올라올 커널을 변경하는 방법은 다음과 같습니다.
[root@localhost ~]# grub2-set-default “커널 명”
[root@localhost ~]# grub2-set-default “CentOS Linux, with Linux 3.10.0-123.el7.x86_64” |
위와 같이 grub2-set-default 명령어 후에 사용할 커널을 기재하면 기재된 커널로 부팅이 됩니다.
재부팅 후에 올라온 커널을 확인합니다.
[root@localhost ~]# grub2-editenv list saved_entry=CentOS Linux, with Linux 3.10.0-123.el7.x86_64 |