busybox怎么安装

在ubuntu上安装busybox和其他软件一样,有两种方法:

1):在shell环境下执行命令:sudo apt-get install busybox,该命令将busybox的可执行文件安装在/bin文件夹下,

安装完成之后可以直接在shell下输入busybox来启动busybox。但是无法进行busybox的配置( make menuconfig )。

按照我的理解,此种方式是直接安装配置好的busybox。

2):在shell环境下执行命令:sudo apt-get source busybox,该命令用以下载busybox的源代码。下载完成后,

直接在busybox的源代码文件夹下执行命令make menuconfig。我在ubuntu8.04下执行时,遇到错误

/usr/bin/ld: cannot find -lncurses。系统提示:

>> Unable to find the Ncurses libraries.

>>

>> You must have Ncurses installed in order

>> to use 'make menuconfig'

在shell环境下输入:sudo apt-get install libncurses-dev安装缺失的ncurses库。

至此,busybox的源代码目录下可以执行make menuconfig 来配置busybox呢 。