Created
December 21, 2020 14:38
-
-
Save RafahCSilva/61bea85697ba0b7db7874ba9f0449940 to your computer and use it in GitHub Desktop.
Update VBoxGuest do Homestead
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
| sudo apt-get update && | |
| sudo apt-get remove dkms build-essential linux-headers-* -y && | |
| sudo apt-get install dkms build-essential linux-headers-$(uname -r) -y | |
| # Download do VBoxGuestAdditions_X.Y.ZZ.iso em http://download.virtualbox.org/virtualbox/ | |
| curl http://download.virtualbox.org/virtualbox/6.1.16/VBoxGuestAdditions_6.1.16.iso -O | |
| sudo mkdir -p /media/iso | |
| sudo mount VBoxGuestAdditions_6.1.16.iso /media/iso | |
| cd /media/iso | |
| sudo sh VBoxLinuxAdditions.run | |
| sudo umount /media/iso | |
| # https://medium.com/homesteading-like-an-artisan/upgrading-homestead-to-virtualbox-5-8916d9b88bc3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment