728x90
현 커널 버전 확인
# uname -r
커널 소스 다운로드
www.kernel.org
# cd /usr/src 디렉토리에 다운로드
커널 소스 압축 풀기
# tar xvfJ linux-5.18.15.tar.xz
# cd linux-5.18.15
커널 설정 초기화
# make mrproper
커널 환경 설정
# make xconfig
.config 편집 및 이전 정보 삭제
.config 파일 편집
# make clean
커널 컴파일 및 설치
# make
# make modules_install
# make install
# ls-l /boot
새로운 커널로 부팅
'Linux' 카테고리의 다른 글
[Linux] GROB(Grand Unified Boot Loader) (1) | 2023.06.09 |
---|---|
[Linux] /etc/fstab 파일 (0) | 2023.05.31 |
[Linux] SAMBA 서비스 (0) | 2023.05.29 |
[Linux] Shell 쉘 정리 (0) | 2023.04.29 |
[Linux] rpm, dnf (0) | 2023.04.07 |