You are not logged in.
This works the same way as the official Virtualbox instructions for Debian, but hopefully it may help some Devuan users who aren't sure:
* Intel/AMD 64-bit architecture
* Current Virtualbox 6.1
Manual download and installation as root (requires manual updating with "wget" and "dpkg -i"):
apt-get install -y gcc make perl
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
# Check https://www.virtualbox.org/wiki/Linux_Downloads to see if there's a newer version
wget https://download.virtualbox.org/virtualbox/6.1.6/virtualbox-6.1_6.1.6-137129~Debian~buster_amd64.deb
dpkg -i virtualbox-6.1_6.1.6-137129~Debian~buster_amd64.deb
apt-get --fix-broken install
Installation via apt-get (easier to keep up to date):
sudo su -c 'wget -q -O- http://download.virtualbox.org/virtualbox/debian/oracle_vbox_2016.asc | apt-key add -'
echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian buster contrib" | sudo tee -a /etc/apt/sources.list
sudo apt-get update
# Check https://www.virtualbox.org/wiki/Linux_Downloads for latest version or use: apt-cache search virtualbox
sudo apt-get install -y virtualbox-6.1
Offline