I did use Synaptic to install VirtualBox but I found its older version, so I want to know How to Install the latest version of VirtualBox For Ubuntu 21.04?
Is there an official repository that I can add to get the latest updates of VirtualBox?
I did use Synaptic to install VirtualBox but I found its older version, so I want to know How to Install the latest version of VirtualBox For Ubuntu 21.04?
Is there an official repository that I can add to get the latest updates of VirtualBox?
If you would like to get VirtualBox straight from Oracle, this is how you can do it:
/etc/apt/sources.list
file using a text editor of your choice. For example:
sudo vi /etc/apt/sources.list
deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian hirsute contrib
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
The fingerprint for this key is:
B9F8 D658 297A F3EF C18D 5CDF A2F6 83C5 2980 AECF
Oracle Corporation (VirtualBox archive signing key) <info@virtualbox.org>
sudo apt update
sudo apt install virtualbox-6.1
Source: VirtualBox
/etc/apt/sources.list.d/
– Bruni
May 18 '21 at 07:19
Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
– cloudxix
Jul 02 '22 at 00:42