本帖最后由 海之楼 于 2020-3-29 17:31 编辑
在Ubuntu14.04.1 x86-64环境下使用busybody构建根文件系统时,使用图形界面对busybody配置时,输入make menuconfig
出现:
scripts/kconfig/lxdialog/dialog.h:31:20: error: curses.h: 没有那个文件或目录
。。。
make[2]: *** [scripts/kconfig/lxdialog/checklist.o] 错误 1
make[1]: *** [menuconfig] 错误 2
make: *** [menuconfig] 错误 2
是缺少libncurses5-dev或ncurses-devel
接着下载ncurses.tar.gz(在用户目录)
tar -zxvf //解压
进入解压后的文件目录下 执行“ ./configure // 命令为编译做好准备; make //命令进行软件编译(好像出现了循环执行不完,我并没有等到执行结束直接ctrl+z)
make install // 完成安装(还没结束我就另开了一个终端试了一下就好了)
make clean //删除安装时产生的临时文件
OK搞定了 下载好的附上
|