Created
August 25, 2021 16:00
-
-
Save jacricelli/55904f1b390cbe9152a7b8a844327e4d to your computer and use it in GitHub Desktop.
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 install build-essential linux-headers-amd64 | |
cd Downloads/ #or wherever the .run file was put | |
sudo chmod +x VirtualBox*.run #previously downloaded from Oracle --> "For all distributions" so does not depend on the problematic libs | |
sudo ./VirtualBox*.run | |
vboxversion=$(wget -qO - https://download.virtualbox.org/virtualbox/LATEST.TXT) | |
wget "https://download.virtualbox.org/virtualbox/${vboxversion}/Oracle_VM_VirtualBox_Extension_Pack-${vboxversion}.vbox-extpack" | |
sudo vboxmanage extpack install --replace Oracle_VM_VirtualBox_Extension_Pack-${vboxversion}.vbox-extpack | |
sudo usermod -aG vboxusers [username] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment