[root@delhi ~]# finger @finger.kernel.org
The latest stable version of the Linux kernel is: 2.6.22.9
The latest prepatch for the stable Linux kernel tree is: 2.6.23-rc9
The latest snapshot for the stable Linux kernel tree is: 2.6.23-rc9-git2
The latest 2.4 version of the Linux kernel is: 2.4.35.3
The latest prepatch for the 2.4 Linux kernel tree is: 2.4.36-pre1
The latest 2.2 version of the Linux kernel is: 2.2.26
The latest prepatch for the 2.2 Linux kernel tree is: 2.2.27-rc2
The latest -mm patch to the stable Linux kernels is: 2.6.23-rc8-mm2
[root@delhi ~]
#!/bin/bash
cd /usr/src
wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.19.2.tar.gz
wget http://www.grsecurity.net/grsecurity-2.1.10-2.6.19.2-200701222307.patch.gz
tar -xvzf linux-2.6.19.2.tar.gz
gunzip < grsecurity-2.1.10-2.6.19.2-200701222307.patch.gz | patch -p0
mv linux-2.6.19.2 linux-2.6.19.2-grsec
ln -s linux-2.6.19.2-grsec linux
cd linux
cp /boot/config-`uname -r` .config
ls -al |grep .config
sleep 10
make menuconfig
sleep 10
make bzImage
sleep 10
make modules
sleep 10
make modules_install
sleep 10
make install
vi /boot/grub/grub.conf
#!/bin/bash
cd /usr/src
wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.11.tar.bz2
wget http://grsecurity.org/grsecurity-2.1.9-2.6.17.11-200608282236.patch.gz
tar -xjvf linux-2.6.17.11.tar.bz2
gunzip < grsecurity-2.1.9-2.6.17.11-200608282236.patch.gz | patch -p0
mv linux-2.6.17.11 linux-2.6.17.11-grsec
ln -s linux-2.6.17.11-grsec linux
cd linux
cp /boot/config-`uname -r` .config
ls -al |grep .config
sleep 10
make menuconfig
sleep 10
make bzImage
sleep 10
make modules
sleep 10
make modules_install
sleep 10
make install