Last active
January 28, 2016 21:51
-
-
Save evenme/a6ba2db6f22459f146c7 to your computer and use it in GitHub Desktop.
Installing guest additions on vagrant machine with kernel update
This file contains 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
# Spin up vagrant machine | |
vagrant up | |
# Go inside vagrant virtual machine | |
vagrant ssh | |
# Install necessary packages for VirtualBox Guest Additions | |
sudo yum install -y kernel-devel kernel gcc binutils make perl bzip2 | |
exit | |
# Install vbguest plugin | |
vagrant plugin install vagrant-vbguest | |
vagrant reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment