jacks
10-05-2011, 17:12
Copied from another thread.
First you need to change the kernel, forget all that compile stuff. Here is what i did..
Might not be the best approach but it works
Make sure and backup all config files edited during this tutorial just in case you screw up.
First run this command to install new kernel, it will ask you if you want to keep your local grub config file i just said yeah..
Code:
sudo apt-get install linux-image-server
then edit your grub.cfg to boot from new kernel. What i did was just comment all the lines that where the OVH kernel and made sure the new kernel was set to boot first
Code:
sudo nano /boot/grub/grub.cfg
then reboot
Code:
sudo reboot
type uname -r and you should see you new kernel
Code:
uname -r
if you screw anything up just reboot into rescue mount your file system and replace original files you have edited.
Now install linux headers for your new kernel.
Code:
sudo apt-get install linux-headers-`uname -r`
That is it now just install Virtualbox and everything should go smoothly.
First you need to change the kernel, forget all that compile stuff. Here is what i did..
Might not be the best approach but it works
Make sure and backup all config files edited during this tutorial just in case you screw up.
First run this command to install new kernel, it will ask you if you want to keep your local grub config file i just said yeah..
Code:
sudo apt-get install linux-image-server
then edit your grub.cfg to boot from new kernel. What i did was just comment all the lines that where the OVH kernel and made sure the new kernel was set to boot first
Code:
sudo nano /boot/grub/grub.cfg
then reboot
Code:
sudo reboot
type uname -r and you should see you new kernel
Code:
uname -r
if you screw anything up just reboot into rescue mount your file system and replace original files you have edited.
Now install linux headers for your new kernel.
Code:
sudo apt-get install linux-headers-`uname -r`
That is it now just install Virtualbox and everything should go smoothly.