眼前多少难甘事,自古男儿当自强。这篇文章主要讲述Linux From Scratch(LFS11.0)构建 LFS 系统 - Util-linux-2.37.2相关的知识,希望能为你提供帮助。
Util-linux 软件包包含若干工具程序。这些程序中有处理文件系统、终端、分区和消息的工具。
安装 Util-linux解压软件包:
cd /sources
tar -xf util-linux-2.37.2.tar.xz
cd util-linux-2.37.2
准备安装 Util-linux:
./configure ADJTIME_PATH=/var/lib/hwclock/adjtime\\
--libdir=/usr/lib\\
--docdir=/usr/share/doc/util-linux-2.37.2 \\
--disable-chfn-chsh\\
--disable-login\\
--disable-nologin\\
--disable-su\\
--disable-setpriv\\
--disable-runuser\\
--disable-pylibmount \\
--disable-static\\
--without-python\\
runstatedir=/run
编译该软件包:
make
如果希望的话,以非 root 用户身份运行测试套件:
一项测试在 chroot 环境中会失败,并导致测试过程陷入无限等待状态。删除该测试以绕过这个问题:
rm tests/ts/lsns/ioctl_ns
chown -Rv tester .
su tester -c "make -k check"
文章图片
安装该软件包:
make install
安装完成后清理工作:
cd ..
rm -rf util-linux-2.37.2
本次分享到此结束啦~
关注公众号:Lucifer三思而后行
【Linux From Scratch(LFS11.0)构建 LFS 系统 - Util-linux-2.37.2】
推荐阅读
- Linux 一键配置 Oracle 主机 /dev/shm
- MAC环境变量的配置小笔记
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Man-DB-2.9.4
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Procps-ng-3.3.17
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Bash-5.1.8
- 使用Hi3861驱动交流电机变频器方法简介
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Sed-4.8
- Linux From Scratch(LFS11.0)构建 LFS 系统 - GCC-11.2.0
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Grep-3.7