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 »

apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName

on local webservers without specific domain I often came over the stated apache warning. Here is how to get rid of it: Check your /etc/hosts that there are entries for localhost, localhost.domainname, hostname, hostname.domainname. Last edit /etc/apache2/httpd.conf and add ServerName hostname to the file. Restart apache root@coding:~# hostname –fqd coding root@coding:~# head -n2 /etc/hosts 127.0.0.1  

apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName Read More »

perl: warning: Setting locale failed

perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = “de_AT.UTF-8”, LC_ALL = “de_DE.UTF-8”, LC_MESSAGES = “de_DE.UTF-8”, LC_COLLATE = “de_DE.UTF-8”, LC_CTYPE = “de_DE.UTF-8”, LANG = “de_AT.UTF-8” are supported and installed on your system. perl: warning: Falling back to the standard locale (“C”). Or during apt operations: locale: Cannot set LC_CTYPE

perl: warning: Setting locale failed Read More »