Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. = Resolve Issues Installing LUbuntu Into VirtualBox. =
  2.  
  3. Encoutered couple of issues.
  4.  
  5. * Turn swap off before starting installation to install with full disk encryption.
  6. sudo swapoff --all
  7. * Download essentials before installing VirtualBox Additions.
  8. sudo apt-get update
  9. sudo apt-get install build-essential linux-headers-"$(uname -r)"
  10. # sudo apt-get install virtualbox-guest-*
  11. * Run VirtualBox Additions installation.
  12. sudo "/media/$USERNAME/VBOXADDITIONS_$VERSION/autorun.sh"
  13. * Grant '''$user''' access to shared folders adding him to group '''vboxsf'''.
  14. sudo usermod -aG vboxsf $user
  15. * Restart.
  16. sudo reboot
  17. * Workaround clipboard sharing problem.
  18. killall VBoxClient
  19. VBoxClient-all
  20. * Untested permanent solution to clipboard sharing problem.
  21. sudo apt-get install virtualbox-guest-dkms
  22.  
  23. This article is compiled using several forums: askubuntu, stackexchange and others.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement