Last active
December 20, 2015 12:21
-
-
Save kmassada/90be15c70acc00a6a0cf to your computer and use it in GitHub Desktop.
Virtualbox Failed to mount centos7 vagrant
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
yum update -y; reboot; | |
yum install kernel-devel -y; reboot; | |
cd /tmp/; | |
wget http://download.virtualbox.org/virtualbox/5.0.10/VBoxGuestAdditions_5.0.10.iso; | |
sudo mkdir /mnt/ | |
sudo mount -o loop VBoxGuestAdditions_5.0.10.iso /mnt | |
sudo /mnt/VBoxLinuxAdditions.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment