make xconfig

* Unable to find the QT4 tool qmake. Trying to use QT3 * * Unable to find any QT installation. Please make sure that * the QT4 or QT3 development package is correctly installed and * either qmake can be found or install pkg-config or set * the QTDIR environment variable to the correct location.

make xconfig Read More »

make gconfig

* Unable to find the GTK+ installation. Please make sure that * the GTK+ 2.0 development package is correctly installed… * You need gtk+-2.0, glib-2.0 and libglade-2.0. for configuring your kernel with make gconfig, you need to install the following packages: libgtk.2.0-0 libgtk2.0-dev libglade2-0 libglade2-dev glib2.0-0 libglib2.0-de

make gconfig Read More »

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. if you want to make changes to your kernel configuration under ubuntu 11.10 you have to install libncurses5-dev to be able to run make menuconfig.

make menuconfig Read More »

Custom Kernel

To compile your own kernel you can follow these steps sudo su cd /usr/src wget http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.2.1.tar.bz2 tar -xf linux-3.2.1.tar.bz2 cd linux-3.2.1 # if you dont have already installed these apt-get install build-essential kernel-package # use local config to get a kernel based on actual configuration make localmodconfig # always use available cores + 1 for

Custom Kernel Read More »