But this happens:
Would anyone know what to do, I do not know too very much about terminal, so please be patient. Running Ubuntu 12.04 64x AMD.
But this happens:
Would anyone know what to do, I do not know too very much about terminal, so please be patient. Running Ubuntu 12.04 64x AMD.
Open Terminal and (as it says in the error message) run sudo service vboxdrv setup
.
The reason you see this error is because the kernel was recently upgraded, but the VirtualBox driver was built for the older kernel (which you are no longer running). Normally, dkms automatically recompiles any modules for newer kernels, so you don't have to do it, but (like me) it's not happening. Make sure dkms is installed (sudo apt-get install dkms
).
sudo service vboxdrv setup
but gotvboxdrv: unrecognised service
Screenshot from terminal: http://imgur.com/rhCV4Hj
– BigDoge230907 Feb 22 '14 at 19:41no suitable module for running kernel found
aftersudo apt-get install virtualbox-dkms
should i continue withsudo modprobe vboxdrv
anyways? – BigDoge230907 Feb 22 '14 at 19:50sudo apt-get install linux-headers-generic
. This will also automatically install headers for future kernels. – saiarcot895 Feb 22 '14 at 20:12sudo apt-get install linux-headers-generic-$(uname -r)
– saiarcot895 Feb 22 '14 at 20:19uname -r
. Whatuname -r
does is print the kernel version that you are currently running. You can test this by running the command separately. – saiarcot895 Feb 22 '14 at 20:30couldn't find any package by regex 'linux-headers-generic-3.8.0-35-generic'
– BigDoge230907 Feb 22 '14 at 20:31sudo apt-get install linux-headers-$(uname -r)
. – saiarcot895 Feb 22 '14 at 20:46sudo modprobe vboxdrv
? – BigDoge230907 Feb 22 '14 at 20:50FATAL: Module Vboxdrv not found.
– BigDoge230907 Feb 22 '14 at 21:07vboxdrv
? – saiarcot895 Feb 22 '14 at 21:23