![]() |
|
Issues with virtualbox on kali host anyone? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Computers (https://sinister.ly/Forum-Computers) +--- Forum: Operating Systems (https://sinister.ly/Forum-Operating-Systems) +--- Thread: Issues with virtualbox on kali host anyone? (/Thread-Issues-with-virtualbox-on-kali-host-anyone) |
Issues with virtualbox on kali host anyone? - !M03! - 01-24-2014 I've been running kali on my laptop as my main OS for some time now and have always used virtualbox to run windows for development. Recently I did a dist upgrade and my virtualbox is now having issues with DKMS. I've googled everywhere for solutions, but this one seems unique in the sense that none of the solutions on google fix the problem! I've purged virtualbox, dkms, and also did a locate for anything related to virtualbox and removed everything! I've compiled from source, installed from deb, installed from apt & nothing seems to work! Really frustrated as I have a lot of development stuff not backed up on my windows vdi image. here is the issue.... Quote:m03@KALI:~$ uname -a Quote:root@KALI:/# virtualbox okay so let's do what they said... Quote:root@KALI:/# /etc/init.d/vboxdrv setup fails.... here is dmesg... Quote:root@KALI:/# dmesg | grep vboxdrv any suggestions? any input would be appreciated. is it possible there is a conflict with what is in my /usr/src? I have a bit in there from older kernel builds. thanks for reading this long-winded post. RE: Issues with virtualbox on kali host anyone? - chmod - 01-24-2014 Firstly you shouldn't use distros such as kali/backtrack as your main OS they are for pentesting so have security issues and can be quite unstable (as you have found out the hard way) I would suggest using a more stable distribution instead On to your problem, from the information you have provided it looks as though virtualbox is not compatible with your current kernel, hence why you are having issues after a dist upgrade. To fix this you will need to roll back the kernel to the previous version using Code: aptitude install linux-headers=<version-number>RE: Issues with virtualbox on kali host anyone? - !M03! - 01-24-2014 (01-24-2014, 02:42 PM)chmod Wrote: Firstly you shouldn't use distros such as kali/backtrack as your main OS they are for pentesting so have security issues and can be quite unstable (as you have found out the hard way) I would suggest using a more stable distribution instead Thanks, for the quick reply. I'll give it a shot. Yeah, I never wanted kali as my main OS. Had a dual boot setup, ended up using it so much that it's going to be so tedious to switch over at this point. Been thinking about scrapping it for a while now, this issue might push me to do it. I will let you know the outcome when trying to roll back the kernel. Thanks again Thanks for leading me in the right direction. I still had the kernel installed so I just had to mess with grub a bit to be able to boot to it (I removed the old kernel from the grub config after update) After updating grub and booting to my old kernel I just ran /etc/init.d/vboxdrv setup Everything back to normal now, for the time being. Thanks so much Will definately be changing distros ASAP |