728x90
안녕하세요. 슈다 입니다.
리눅스 kernel update 방법에 대해 알아보겠습니다.
1. 업데이트 할 커널 버전이 있는 레포지토리 활성화
명령어로 repo 파일 생성하거나 vi로 직접 repo파일 생성. 파일명은 임의로 지정
1. yum-config-manager --add-repo="repo경로"
2. vi /etc/yum.repos.d/update.repo
[update]
name=update
baseurl=repo경로
enabled=1
gpgcheck=0
2. 현재 kernel 버전 및 설치 가능한 kernel list 확인
# uname -r
# yum list kernel
3. kernel update
# yum update kernel {-y}
4. 설치 완료되면 reboot 하여 설치된 커널로 부팅
# reboot
5. 설치된 kernel 버전 확인 및 현재 부팅된 kernel 확인
# yum list kernel
# uname -r
728x90
반응형
'IT > Unix & Linux' 카테고리의 다른 글
[AIX] LV 생성 시 position on physical volume 옵션 (0) | 2019.09.30 |
---|---|
[AIX] 패스워드 알고리즘 변경 (0) | 2019.09.27 |
[Linux] useradd: cannot lock /etc/passwd 해결방법 (0) | 2019.08.13 |
[Linux] CD mount, ISO mount (0) | 2019.08.12 |
[Linux] root 비밀번호 초기화 방법 (1) | 2019.08.08 |