Differences

This shows you the differences between two versions of the page.

Link to this comparison view

vps:kernel_devel [2012-10-01 17:58:24] (current)
shaun.reitan created
Line 1: Line 1:
 +====== How to get the kernel devel for our VPS line  ======
  
 +<code console>
 +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
 +</code>