How to get the kernel devel for our VPS line

cd /usr/src
wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-$(uname -r | cut -d'-' -f1).tar.gz
tar zxf linux-$(uname -r | cut -d'-' -f1).tar.gz
ln -sf linux-$(uname -r | cut -d'-' -f1) linux
cd linux
zcat /proc/config.gz > .config
make oldconfig
make modules
make modules_install