Download new linux kernel, make

来源:互联网 发布:淘宝显示月销量 编辑:程序博客网 时间:2024/06/06 00:08

1.Download new linux kernel:

   url : http://www.kernel.org

2. tar:

    tar -jxvf linux-x-y-z.tar.bz2

3.make

   make menuconfig  ---> .config

 

 4.  if you happen to error as follow:

   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

 

    to resolve the error, you can do like this:

   in terminal windows: type in : sudo apt-get install libncurses5-dev

5.make menuconfig  ---> .config

6.make


原创粉丝点击