Bash 软件包包含 Bourne-Again Shell。
安装 Bash
首先进入到源码目录,解压软件包:
cd /sources
tar xf bash-4.3.30.tar.gz
cd bash-4.3.30
首先,安装下面的补丁修复上游解决的一些 bug:
patch -Np1 -i ../bash-4.3.30-upstream_fixes-1.patch
准备编译 Bash:
./configure --prefix=/usr
--bindir=/bin
--docdir=/usr/share/doc/bash-4.3.30
--without-bash-malloc
--with-installed-readline
编译软件包:
make
如果不需要运行测试套件的话跳转到 “安装软件包 ”。
准备测试,确保 nobody 用户可以写源文件树:
chown -Rv nobody .
现在,以 nobody 用户身份运行测试:
su nobody -s /bin/bash -c "PATH=$PATH make tests"
安装软件包:
make install
运行新编译的 bash 程序(替换正在运行的那个):
exec /bin/bash --login +h
安装完成后清理工作:
cd ..
rm -rf bash-4.3.30
本次分享到此结束啦~
如果觉得文章对你有帮助,点赞、收藏、关注、评论,一键四连支持,你的支持就是我创作最大的动力。
❤️ 技术交流可以 关注公众号:Lucifer三思而后行 ❤️
本文摘自 :https://blog.51cto.com/l