Find the answer to your Linux question:
Results 1 to 4 of 4
Hey there. I want to install the new linux kernel, but I am having some problems. I download the kernel to my /usr/src/ and extract it there. Then I: Code: ...
  1. #1
    Just Joined!
    Join Date
    Feb 2007
    Posts
    13

    Installing Kernel 2.6.20 Problems

    Hey there.
    I want to install the new linux kernel, but I am having some problems.

    I download the kernel to my /usr/src/ and extract it there.
    Then I:
    Code:
    cd /usr/src/linux-2.6.20/
    make menuconfig
    Then I get tons of errors, too many to copy and paste in this post, but the last lines are these
    Code:
    make[1]: *** [scripts/kconfig/lxdialog/checklist.o] Error 1
    make: *** [menuconfig] Error 2
    What is the problem here?

  2. #2
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Did you install the dependencies first ?

    Minimally you need :
    Code:
    apt-get install build-essential libncurses-dev kernel-package bzip2
    More details here :
    http://technowizah.com/2005/12/debia...l-compile.html
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  3. #3
    Just Joined!
    Join Date
    Feb 2007
    Posts
    13
    Do I need to put anything in /ect/apt/sources.list because it says it cannot find fakeroot.(I'm taking that from your website).

  4. #4
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by Abenenati
    Do I need to put anything in /ect/apt/sources.list because it says it cannot find fakeroot.
    Well, not really, since fakeroot is part of the main section of the official Debian repository. As long as your /etc/apt/sources.list looks like that you should be ok :
    Code:
    #Local Mirror
    deb ftp://ftp.us.debian.org/debian/ etch main contrib non-free
    #deb-src ftp://ftp.us.debian.org/debian/ etch main contrib non-free
    
    #Security
    deb http://security.debian.org/ etch/updates main contrib non-free
    #deb-src http://security.debian.org/ etch/updates main contrib non-free
    
    #Multimedia
    deb http://debian-multimedia.org/ etch main
    #deb-src http://debian-multimedia.org/ etch main
    Of course, don't forget to run
    Code:
    apt-get update
    afterwards.
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •