{"id":4805,"date":"2019-12-14T11:57:13","date_gmt":"2019-12-14T08:57:13","guid":{"rendered":"https:\/\/kifarunix.com\/?p=4805"},"modified":"2024-03-12T23:34:50","modified_gmt":"2024-03-12T20:34:50","slug":"upgrade-virtualbox-6-0-to-6-1-on-ubuntu-systems","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/upgrade-virtualbox-6-0-to-6-1-on-ubuntu-systems\/","title":{"rendered":"Upgrade VirtualBox 6.0 to 6.1 on Ubuntu Systems"},"content":{"rendered":"
With the release of VirtualBox 6.1 and its new major features, you should be planning to upgrade your VirtualBox 6.0. Well, in this guide, we are going to learn how to upgrade VirtualBox 6.0 to 6.1 on Ubuntu Systems.<\/p>\n\n\n\n
The list is quite comprehensive. Read more on the Changelog<\/a>.<\/p>\n\n\n\n For the purposes of this demo, we are using Ubuntu 16.04 as our host system. Hence, follow through to learn how to upgrade VirtualBox to the latest release version.<\/p>\n\n\n\n To begin with, kill any VirtualBox process that is running;<\/p>\n\n\n\n Next, remove any package related to the VirtualBox 6.0 on your system along with packages that are no longer required.<\/p>\n\n\n\n Note<\/strong>: When you remove VirtualBox, you existing VMs will remain intact under the installation directory, in my case, it is Reboot your system to reload the kernel modules.<\/p>\n\n\n\n Update your system package cache;<\/p>\n\n\n\n VirtualBox 6.1 can be installed using the DEB binary package or from the APT repos.<\/p>\n\n\n\n To install VirtualBox using the .DEB binary package, simply download the LATEST<\/strong> binary from VirtualBox downloads page<\/a>.<\/p>\n\n\n\n Use either the dpkg tool or apt package manager to install VirtualBox<\/p>\n\n\n\n or<\/p>\n\n\n\n To install VirtualBox from APT repos, simply install the VirtualBox APT sources list.<\/p>\n\n\n\n Install the repository signing keys.<\/p>\n\n\n\n Update system packages and install VirtualBox<\/p>\n\n\n\n Remove the old version of VirtualBox extension pack.<\/p>\n\n\n\n Download the latest VirtualBox 6.1 extension pack.<\/p>\n\n\n\n Install VirtualBox 6.1 Extension Pack<\/p>\n\n\n\n Accept the VirtualBox Extension Pack Personal Use and Evaluation License (PUEL) and proceed with installation.<\/p>\n\n\n\n You can run your VirtualBox as you always would. To check confirm the installed version, on the VirtualBox menu bar, click Help > About VirtualBox<\/strong>.<\/p>\n\n\n There you go. You have successfully upgraded your VirtualBox 6.0 to VirtualBox 6.1 on your Ubuntu System.<\/p>\n\n\n\n Related Tutorials<\/p>\n\n\n\n How to Upgrade VirtualBox 5.2 to VirtualBox 6.0 on Ubuntu 16.04<\/a><\/p>\n\n\n\n Install VirtualBox Guest Additions on Ubuntu 20.04<\/a><\/p>\n\n\n\nUpgrading VirtualBox 6.0 to 6.1 on Ubuntu Systems<\/h2>\n\n\n\n
Remove Old Versions of VirtualBox<\/h3>\n\n\n\n
ps aux | grep -i virtualbox | grep -v grep | awk '{print$2}' | xargs -I {} sudo kill -9 {}<\/code><\/pre>\n\n\n\n
$HOME\/VirtualBox VMs<\/code> directory.<\/p>\n\n\n\n
sudo apt remove --purge --auto-remove virtualbox<\/code><\/pre>\n\n\n\n
systemctl reboot<\/code><\/pre>\n\n\n\n
Install VirtualBox 6.1 on your Ubuntu System<\/h3>\n\n\n\n
Run System Update<\/h4>\n\n\n\n
apt update -y<\/code><\/pre>\n\n\n\n
Install VirtualBox 6.1 using DEB Binary Package<\/h4>\n\n\n\n
wget https:\/\/download.virtualbox.org\/virtualbox\/6.1.0\/virtualbox-6.1_6.1.0-135406~Ubuntu~bionic_amd64.deb<\/code><\/pre>\n\n\n\n
dpkg -i virtualbox-6.1_6.1.0-135406~Ubuntu~bionic_amd64.deb\napt install -f<\/code><\/pre>\n\n\n\n
apt install .\/virtualbox-6.1_6.1.0-135406~Ubuntu~bionic_amd64.deb<\/code><\/pre>\n\n\n\n
Install VirtualBox on Ubuntu from APT Repos<\/h4>\n\n\n\n
echo \"deb [arch=amd64] https:\/\/download.virtualbox.org\/virtualbox\/debian $(lsb_release -sc) contrib\" | sudo tee \/etc\/apt\/sources.list.d\/virtualbox.list<\/code><\/pre>\n\n\n\n
wget -q https:\/\/www.virtualbox.org\/download\/oracle_vbox_2016.asc -O- | sudo apt-key add -<\/code><\/pre>\n\n\n\n
wget -q https:\/\/www.virtualbox.org\/download\/oracle_vbox.asc -O- | sudo apt-key add -<\/code><\/pre>\n\n\n\n
sudo apt update<\/code><\/pre>\n\n\n\n
sudo apt install virtualbox-6.1<\/code><\/pre>\n\n\n\n
Install VirtualBox 6.1 Extension Pack<\/h3>\n\n\n\n
sudo VBoxManage extpack uninstall \"Oracle VM VirtualBox Extension Pack\"<\/code><\/pre>\n\n\n\n
wget -P \/tmp https:\/\/download.virtualbox.org\/virtualbox\/6.1.0\/Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack<\/code><\/pre>\n\n\n\n
sudo VBoxManage extpack install \/tmp\/Oracle_VM_VirtualBox_Extension_Pack-6.1.0.vbox-extpack<\/code><\/pre>\n\n\n\n
Running VirtualBox 6.1<\/h3>\n\n\n\n
<\/figure><\/div>\n\n\n