본문 바로가기

리눅스

[Linux] GRUB2 부팅순서 변경

반응형

GRUB2 부팅순서 변경(CentOS 7.x)

 

1. 현재 기본 설정 확인

# grub2-editenv list

saved_entry=CentOS Linux (3.10.0-693.11.6.el7.x86_64) 7 (Core)

 

2. 부팅 가능한 커널 리스트 확인

# grep ^menuentry /boot/grub2/grub.cfg | cut -d "'" -f2

CentOS Linux (3.10.0-693.11.6.el7.x86_64) 7 (Core)

CentOS Linux (3.10.0-693.5.2.el7.x86_64) 7 (Core)

CentOS Linux (3.10.0-514.el7.x86_64) 7 (Core)

CentOS Linux (0-rescue-d7414c19c8184dfe81d780107f18d372) 7 (Core)

 

3. 기본 부팅 커널 설정

# grub2-set-default "CentOS Linux (3.10.0-514.el7.x86_64) 7 (Core)"

 

4. 변경된 커널 확인

# grub2-editenv list

saved_entry=CentOS Linux (3.10.0-693.5.2.el7.x86_64) 7 (Core)

 

5. 변경된 커널 확인

# reboot

 

728x90
반응형