2015-07-15 15:15:49
来 源
中存储网
Ubuntu
Ubuntu 下编译Linux内核时,在命令行输入: make menuconfig 后,出现如下错误: *** Unable to find the ncurses libraries or the *** required header files. *** make menuconfig requires the ncurses libraries. *** *** Install ncurses (ncurses-dev

Ubuntu 下编译Linux内核时,在命令行输入:

make menuconfig

后,出现如下错误:

*** Unable to find the ncurses libraries or the
*** required header files.
*** 'make menuconfig' requires the ncurses libraries.
***
*** Install ncurses (ncurses-devel) and try again.
***
make[1]: *** [scripts/kconfig/dochecklxdialog] 错误 1
make: *** [menuconfig] 错误 2

上述错误是说,执行make menuconfig 命令需要安装ncurses-dev

解决方案:

在命令行中输入:

sudo apt-get install libncurses5-dev

make menuconfig

Ncurses是一个能提供功能键定义(快捷键),屏幕绘制以及基于文本终端的图形互动功能的动态库。

这就不难解释为何执行make menuconfig命令需要ncurses了。

Ncurses是一个能提供基于文本终端窗口功能的动态库. Ncurses可以:

只要您喜欢,您可以使用整个屏幕
创建和管理一个窗口
使用8种不同的彩色
为您的程序提供鼠标支持
使用键盘上的功能键

Ncurses可以在任何遵循ANSI/POSIX标准的UNIX系统上运行,除此之外,它还可以从系统数据库中检测终端的属性, 并且自动进行调整,提供一个不受终端约束的接口.因此,Ncurses可以在不同的系统平台和不同的终端上工作的非常好。

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。