安装了Ubuntu 11.04操作系统,这个操作系统感觉上是用来上上网,办公什么的还行,要是用来开发感觉还是有点不是很好用,因为好多库没装。
这不,我本想编译下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] Error 1
make: *** [menuconfig] Error 2
看错误的信息应该是少了什么库,上网搜索了下,果然是少了一个库,保证PC联网,使用下面的命令就可以了,我就是用的这个命令,我的Linux内核是2.6.38.8的:
$sudo apt-get install libncurses*
带上“*”的原因是想安装以这个为开头的库,防止只安装部分过会又有什么问题。