Advertisement
Guest User

Kali 1.1.0 VirtualBox Install - UPDATEDv2

a guest
Mar 29th, 2015
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # step-by-step Vbox install on FRESH kali 1.1.0
  2. # if any of these steps are missed, you will likely be greeted with errors when trying to create a VM
  3.  
  4. 1. Edit contents of /etc/apt/sources.list:
  5. sudo nano /etc/apt/sources.list
  6.  
  7. -- needs at least the following lines somewhere in:
  8. deb http://http.kali.org/kali kali main contrib non-free
  9. deb http://security.kali.org/kali-security kali/updates main contrib non-free
  10. deb http://download.virtualbox.org/virtualbox/debian wheezy contrib
  11.  
  12. 2. Update & upgrade:
  13. sudo apt-get update && sudo apt-get upgrade && apt-get dist-upgrade
  14. sudo shutdown -r now
  15.  
  16. 3. Install linux-headers:
  17. sudo apt-get install linux-headers-$(uname -r)
  18.  
  19. 4. Install DKMS and base-essentials:
  20. sudo apt-get install dkms build-essential
  21.  
  22. 5. Download Oracle public key and add key to apt:
  23. wget -q https://www.virtualbox.org/download/oracle_vbox.asc
  24. sudo apt-key add oracle_vbox.asc
  25.  
  26. 6. Update apt again, and download virtualbox:
  27. sudo apt-get update
  28. sudo apt-get install virtualbox-4.3
  29.  
  30. 7. That's all. Run with:
  31. virtualbox
  32. OR
  33. virtualbox&
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement