CentOS编译安装Busybox
2022/5/2 7:15:12
本文主要是介绍CentOS编译安装Busybox,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
CentOS编译安装Busybox
1.下载busybox
wget -N -P /opt https://busybox.net/downloads/busybox-1.31.0.tar.bz2 -C /opt
2.安装依赖包
yum -y install gcc gcc-c++ glibc glibc-devel pcre pcre-devel openssl openssl-devel systemd-devel zlib-devel libmcrypt-devel glibc-static ncurses-devel
3.加压并编译安装
# cd /opt # tar -jxvf busybox-1.31.0.tar.bz2 && cd busybox-* # make menuconfig 选择settings-->Build static binary (no shared libs)选择,保存退出 # make # l. //此时在此目录下多出了一个.config的文件 .config .config.old .indent.pro .tmp_versions # ./busybox ls //编译完成,测试 bin data etc lib media opt root sbin sys usr boot dev home lib64 mnt proc run srv tmp var # make install
注:使用make install后生成一个_install文件夹,里面存放各种软链接,指向为busybox,将_install移走就能使用了
问题:在Linux环境make menuconfig的时候出现一下错误。
In file included from scripts/kconfig/lxdialog/checklist.c:24:0:
scripts/kconfig/lxdialog/dialog.h:32:20: fatal error: curses.h: No such file or directory
compilation terminated.
make[1]: *** [scripts/kconfig/lxdialog/checklist.o] Error 1
make: *** [menuconfig] Error 2
解决办法:
红帽或者FC的安装ncurses-devel
sudo yum install ncurses-devel
Ubuntu的需要安装libncurses5-dev
sudo apt-get install libncurses5-dev
一入运维深似海,从此不见彼岸花这篇关于CentOS编译安装Busybox的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享