Linux From Scratch - Version 12.1-systemd | ||
---|---|---|
Chapter 8. Installing Basic System Software | ||
이전 | 위로 / 처음으로 | 다음 |
OpenSSL-3.2.1 | Libelf from Elfutils-0.190 |
Kmod 패키지에는 커널 모듈 로드를 위한 라이브러리 및 유틸리티가 포함되어 있습니다.
Kmod 컴파일을 준비합니다.
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-openssl \
--with-xz \
--with-zstd \
--with-zlib
패키지를 컴파일합니다.
make
이 패키지의 테스트 스위트는 이전에 설치된 “sanitized”된 커널 헤더가 아닌 원시 커널 헤더가 필요하며, 이는 LFS의 범위를 벗어납니다.
패키지를 설치하고 Module-Init-Tools(이전에 Linux 커널 모듈을 처리하던 패키지)와의 호환성을 위해 심볼릭 링크를 생성합니다:
make install
for target in depmod insmod modinfo modprobe rmmod; do
ln -sfv ../bin/kmod /usr/sbin/$target
done
ln -sfv kmod /usr/bin/lsmod