1.  Rocky Linux ISO  이미지 다운 페이지 

 

https://rockylinux.org/ko-KR/download

 

Download - Rocky Linux

다운로드 최신 로키 리눅스 설치 관련 있는 As you download and use Rocky Linux, the Rocky Enterprise Software Foundation invites you to be a part of the community as a contributor. There are many ways to contribute to the project, from docum

rockylinux.org

 

2. 아카이브 이미지 다운 받을 때 

 

https://dl.rockylinux.org/vault/rocky/

 

아카이브 페이지로 넘어가면 일반적으로 ISO 이미지는 원하는 버전으로 가서 isos 디렉토리로 가면 안에 있다. 

 

https://dl.rockylinux.org/vault/rocky/9.5/isos/x86_64/

 

Index of /vault/rocky/9.5/isos/x86_64/

 

dl.rockylinux.org

 

 

 

 

1. kernel version 확인 

 # uname -r   또는 # uname -a 

 

2. 패키지 확인 

 # dpkg - l | grep kernel

 

3. 해당 kernel version이 없다면 다운로드 

 # sudo update 

 # sudo apt install [linux-image-5.15.0-91-generic] [linux-headers-5.15.0-91-generic]  // 원하는 커널 선택

 # sudo apt install linux-image-5.15.0-91-generic linux-headers-5.15.0-91-generic

 

4. /etc/default/grub 수정

 # vi /etc/default/grub 

 - GRUB_TIME_STYLE=hidden   // 해당 내용에 주석처리 또는 style을 menu로 변경

 - GRUB_TIMEOUT=0   //해당내용에 주석처리 또는 timeout을 원하는 시간으로 변경 

 # update-grub

 

5. 재부팅 후 부팅 시 커널 선택 

 # sudo reboot 

 - 부팅 직후에 

 -  Advanced options for Ubuntu 선택 

 - 설치된 커널 목록 중 원하는 kernel version 을 선택해서 부팅 

 

7. 부팅한 kernel을 고정하기 

 # sudo vi /etc/default/grub 

GRUB_DEFAULT='1>Ubuntu, with Linux 5.15.0-91-generic' 값을 수정  

또는 

GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 5.15.0-91-generic"

// 버전마다 조금 씩 다를 수 있음 

 

8. grub 업데이트 

 # sudo update-grub 

 # sudo reboot 

 - 재부팅하면 설정한 커널로 자동 부팅

 

 

1. ubuntu version /  kernel version 

- 22.04 LTS / 5.15

- 22.04.2 / 5.19

- 22.04.3 / 6.2

- 22.04.4 / 6.5

- 22.04.5 / 6.8

 

추가.  24.04 LTS ubuntu version / kernel version 

- 24.04 LTS / 6.8 

- 24.04.2 / 6.8

+ Recent posts