识字粗堪供赋役,不须辛苦慕公卿。这篇文章主要讲述Linux From Scratch(LFS11.0)构建 LFS 系统 - Gawk-5.1.0相关的知识,希望能为你提供帮助。
Gawk 软件包包含操作文本文件的程序。
安装 Gawk解压软件包:
【Linux From Scratch(LFS11.0)构建 LFS 系统 - Gawk-5.1.0】
cd /sources
tar -xf gawk-5.1.0.tar.xz
cd gawk-5.1.0
首先,确保不安装某些不需要的文件:
sed -i \'s/extras//\' Makefile.in
准备编译 Gawk:
./configure --prefix=/usr
编译该软件包:
make
运行以下命令以测试编译结果:
make check
安装该软件包:
make install
如果需要的话,安装文档:
mkdir -v /usr/share/doc/gawk-5.1.0
cp -v doc/{awkforai.txt,*.{eps,pdf,jpg}} /usr/share/doc/gawk-5.1.0
安装完成后清理工作:
cd ..
rm -rf gawk-5.1.0
公众号:Lucifer三思而后行
推荐阅读
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Groff-1.22.4
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Gzip-1.10
- Linux From Scratch(LFS11.0)构建 LFS 系统 - GRUB-2.06
- Linux From Scratch(LFS11.0)使 LFS 系统可引导 - 使用 GRUB 设定引导过程
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Systemd-249
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Kbd-2.4.0
- Linux From Scratch(LFS11.0)构建 LFS 系统 - Vim-8.2.3337
- Linux From Scratch(LFS11.0)收尾工作
- Linux From Scratch(LFS11.0)构建 LFS 系统 - MarkupSafe-2.0.1