Linux From Scratch - Version 12.1-systemd
Chapter 7. Entering Chroot and Building Additional Temporary Tools
이전 위로 / 처음으로 다음
Texinfo-7.1 정리 및 임시 시스템 복사본 생성

7.12. Util-linux-2.39.3

Util-linux 패키지에는 기타 유틸리티 프로그램이 포함되어 있습니다.


7.12.1. Util-linux 설치

FHS는 adjtime 파일의 위치로 일반적인 /etc 디렉터리 대신 /var/lib/hwclock 디렉터리를 사용할 것을 권장합니다. 다음과 같이 해당 디렉터리를 만듭니다.

mkdir -pv /var/lib/hwclock

Util-linux 컴파일을 준비합니다.

./configure --libdir=/usr/lib    \
            --runstatedir=/run   \
            --disable-chfn-chsh  \
            --disable-login      \
            --disable-nologin    \
            --disable-su         \
            --disable-setpriv    \
            --disable-runuser    \
            --disable-pylibmount \
            --disable-static     \
            --without-python     \
            ADJTIME_PATH=/var/lib/hwclock/adjtime \
            --docdir=/usr/share/doc/util-linux-2.39.3

configure 옵션 설명

패키지를 컴파일합니다.

make

패키지를 설치합니다.

make install


이 패키지에 대한 자세한 내용은 8.79.2. "Util-linux 패키지 구성"에 나와 있습니다.