Linux From Scratch(LFS11.0)构建 LFS 系统 - IPRoute2-5.13.0

IPRoute2 软件包包含基于 IPv4 的基本和高级网络程序。

安装 IPRoute2

解压软件包:

cd /sources
tar -xf iproute2-5.13.0.tar.xz
cd iproute2-5.13.0

该软件包中的 arpd 程序依赖于 LFS 不安装的 Berkeley DB,因此不会被构建。然而,用于 arpd 的一个目录和它的 man 页面仍会被安装。运行以下命令以防止它们的安装。

sed -i /ARPD/d Makefile
rm -fv man/man8/arpd.8

还需要禁用两个需要 https://www.linuxfromscratch.org/blfs/view/11.0/postlfs/iptables.html 的模块。

sed -i 's/.m_ipt.o//' tc/Makefile

编译该软件包:

make

该软件包没有能够工作的测试套件。

安装该软件包:

make SBINDIR=/usr/sbin install

如果需要的话,安装文档:

mkdir -v /usr/share/doc/iproute2-5.13.0
cp -v COPYING README* /usr/share/doc/iproute2-5.13.0

安装完成后清理工作:

cd ..
rm -rf iproute2-5.13.0

本次分享到此结束啦~

如果觉得文章对你有帮助,点赞、收藏、关注、评论,一键四连支持,你的支持就是我创作最大的动力。

❤️ 技术交流可以 关注公众号:Lucifer三思而后行 ❤️

上一篇:IDEA 这个小技巧太实用了。。


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