Ubuntu 22.04 - 리눅스 커널 빌드 및 업그레이드
예전에도 한번 컴파일한 적이 있지만,
닷넷 개발자가 컴파일해 본 리눅스
; https://www.sysnet.pe.kr/2/0/1325
근래 다시 해보니 약간 더 편해진 듯합니다. ^^
How to Build Linux Kernel From Scratch {Step-By-Step Guide}
; https://phoenixnap.com/kb/build-linux-kernel
우선, 컴파일을 위한 도구를 설치하고,
// Ubuntu 22.04 기준
$ sudo apt update && sudo apt upgrade -y
$ sudo apt-get install git fakeroot build-essential ncurses-dev xz-utils libssl-dev bc flex libelf-dev bison -y
// 만약 BTF 관련 옵션을 활성화하고 싶다면 추가 설치
$ sudo apt install pahole -y
원하는 커널 소스를 다운로드합니다.
The Linux Kernel Archives
; http://www.kernel.org/
// 원하는 디렉터리 생성 (여기서는 /usr/src/kernel)
$ sudo mkdir /usr/src/kernel
$ cd /usr/src/kernel
// 여기서는 6.11.5 버전의 소스코드
$ sudo wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.11.5.tar.xz
// apt install xz-utils
$ sudo tar -xf linux-6.11.5.tar.xz
$ cd linux-6.11.5/
소스코드 빌드를 위한 config을 설정하고,
// 원한다면 기존 커널의 .config 파일을 복사
$ ls /boot/config-$(uname -r)
/boot/config-6.8.0-47-generic
$ sudo cp -v /boot/config-$(uname -r) .config
// 원한다면 .config 파일 설정을 수정
$ sudo make menuconfig
빌드합니다.
// Ubuntu 환경인 경우, 빌드 전 아래의 설정을 추가
$ sudo scripts/config --disable SYSTEM_TRUSTED_KEYS
$ sudo scripts/config --disable SYSTEM_REVOCATION_KEYS
// 빌드 시작
$ sudo make -j$(nproc)
...[생략]...
$ sudo make modules_install headers_install
이후 빌드가 완료됐으면 커널을 교체합니다.
$ sudo make install
INSTALL /boot
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 6.11.5 /boot/vmlinuz-6.11.5
update-initramfs: Generating /boot/initrd.img-6.11.5
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades 6.11.5 /boot/vmlinuz-6.11.5
run-parts: executing /etc/kernel/postinst.d/update-notifier 6.11.5 /boot/vmlinuz-6.11.5
run-parts: executing /etc/kernel/postinst.d/xx-update-initrd-links 6.11.5 /boot/vmlinuz-6.11.5
I: /boot/initrd.img.old is now a symlink to initrd.img-6.8.0-47-generic
I: /boot/initrd.img is now a symlink to initrd.img-6.11.5
run-parts: executing /etc/kernel/postinst.d/zz-shim 6.11.5 /boot/vmlinuz-6.11.5
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 6.11.5 /boot/vmlinuz-6.11.5
Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-6.11.5
Found initrd image: /boot/initrd.img-6.11.5
Found linux image: /boot/vmlinuz-6.8.0-47-generic
Found initrd image: /boot/initrd.img-6.8.0-47-generic
Found linux image: /boot/vmlinuz-6.8.0-45-generic
Found initrd image: /boot/initrd.img-6.8.0-45-generic
Found linux image: /boot/vmlinuz-5.15.0-124-generic
Found initrd image: /boot/initrd.img-5.15.0-124-generic
Memtest86+ needs a 16-bit boot, that is not available on EFI, exiting
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
done
참고로, make 전에 아래의 설정을 누락하면,
$ sudo scripts/config --disable SYSTEM_TRUSTED_KEYS
$ sudo scripts/config --disable SYSTEM_REVOCATION_KEYS
빌드 시 이런 오류가 발생합니다.
make[1]: *** [/usr/src/kernel/linux-6.11.5/Makefile:1926: .] Error 2
make: *** [Makefile:224: __sub-make] Error 2
또는, 일단 한 번 빌드 후에 커널을 다시 빌드(make)하는 경우에도 이런 오류가 발생합니다.
$ sudo make -j$(nproc)
...[생략]...
CALL scripts/checksyscalls.sh
make[3]: *** No rule to make target 'debian/canonical-certs.pem', needed by 'certs/x509_certificate_list'. Stop.
make[2]: *** [scripts/Makefile.build:485: certs] Error 2
make[2]: *** Waiting for unfinished jobs....
CHK kernel/kheaders_data.tar.xz
make[1]: *** [/usr/src/kernel/linux-6.11.5/Makefile:1926: .] Error 2
make: *** [Makefile:224: __sub-make] Error 2
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]