Linux From Scratch(LFS11.0)构建 LFS 系统 - Util-linux-2.37.2

Posted Lucifer三思而后行

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 From Scratch(LFS11.0)构建 LFS 系统 - 清理系统

Linux From Scratch(LFS11.0)构建 LFS 系统 - GCC-11.2.0

Linux From Scratch(LFS11.0)收尾工作

Linux From Scratch(LFS11.0)收尾工作

Linux From Scratch(LFS11.0)构建 LFS 系统 - Diffutils-3.8

Linux From Scratch(LFS11.0)构建 LFS 系统 - Inetutils-2.1