Last active
May 18, 2016 08:31
-
-
Save christopher-baek/72aa2ef158e5db732a90bd52aaddd7d6 to your computer and use it in GitHub Desktop.
VirtualBox Guest Additions In Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install and set up prerequisites | |
sudo apt-get install build-essential module-assistant dkms | |
sudo m-a prepare | |
# install guest additions | |
cd /media/$(id -un)/VBOXADDITIONS* | |
sudo ./VBoxLinuxAdditions.run | |
# add user to group | |
sudo usermod -G vboxsf -a $(id -un) | |
# reboot | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment