Skip to content

Instantly share code, notes, and snippets.

@danielm
Created April 20, 2021 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielm/0eb7297b41b2fc0d9c6aafb98c2d0a2d to your computer and use it in GitHub Desktop.
Save danielm/0eb7297b41b2fc0d9c6aafb98c2d0a2d to your computer and use it in GitHub Desktop.
Install Virtualbox on Debian Bullseye
# Download the *.run file from Virtualbox Site, 'other distros'
apt install build-essential linux-headers-amd64
chmod +x 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"
vboxmanage extpack install --replace Oracle_VM_VirtualBox_Extension_Pack-${vboxversion}.vbox-extpack
# Add your user to the
/usr/sbin/usermod -aG vboxusers [username]
# REBOOT!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment