Install VirtualBox 6.1 on Ubuntu 18.04 Desktop

koromicha

Updated on:

VirtualBox 6.1.0 which is a major update of VirtualBox was released December 10 2019 with quite a number of new major features. How to install VirtualBox 6.1 on Ubuntu 18.04 desktop is what is covered on this guide.

Install VirtualBox 6.1 on Ubuntu 18.04 Desktop

Well, there is nothing new in the steps that you need to take to install VirtualBox 6.1 on an Ubuntu system except the version number of VirtualBox.

Run System Update

Resynchronize your system packages to their latest versions.

apt update
apt upgrade

Install VirtualBox 6.1

You can choose to install VirtualBox 6.1 using the .DEB binary package or simply install it from the APT repos.

Install VirtualBox using .DEB Binary Package

To install VirtualBox using the .DEB binary package, simply download the binary from VirtualBox downloads page.

wget https://download.virtualbox.org/virtualbox/6.1.0/virtualbox-6.1_6.1.0-135406~Ubuntu~bionic_amd64.deb

You can now either use the dpkg tool to install VitualBox and manually deal with unmet dependencies or simply use the apt package manager and automatically handle the dependency issues.

dpkg -i virtualbox-6.1_6.1.0-135406~Ubuntu~bionic_amd64.deb
apt install -f

or

apt install ./virtualbox-6.1_6.1.0-135406~Ubuntu~bionic_amd64.deb

Install VirtualBox using APT Repositories

To install VirtualBox from APT repos, simply install the VirtualBox APT sources list.

echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list

Install the repository signing keys.

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 -

Update system packages and install VirtualBox

apt update
apt install virtualbox-6.1

Running VirtualBox on Ubuntu 18.04

You can now launch VirtualBox from the Activities Overview from the top right corner or from the terminal by just typing virtualbox and pressing ENTER.

Install VirtualBox 6.1 on Ubuntu 18.04 Desktop

Verify the installed version by clicking Help > About VirtualBox on the menu bar.

Install VirtualBox 6.1 on Ubuntu 18.04 Desktop

Great!! That is all on how to install VirtualBox 6.1 on Ubuntu 18.04 Desktop. You can now create your virtual machine however way you want.

Related Tutorials

Use VirtualBox VMs on KVM

Install VirtualBox Guest Additions on CentOS 8

AutoStart VirtualBox VMs on System Boot on Linux

I am the Co-founder of Kifarunix.com, Linux and the whole FOSS enthusiast, Linux System Admin and a Blue Teamer who loves to share technological tips and hacks with others as a way of sharing knowledge as: "In vain have you acquired knowledge if you have not imparted it to others".

Related Posts

Install VirtualBox Extension Pack on VirtualBox 6.0
Easy Way to Extend KVM Virtual Machine Disk Size
How to fix QEMU/KVM Not Connected Error on Ubuntu 20.04

2 thoughts on “Install VirtualBox 6.1 on Ubuntu 18.04 Desktop”

  1. excellent tutorial, thank you. my problem was after using dpkg to install virtualbox 6.1 on ubuntu mate, i couldnt execute him from menu but from terminal. this resolved my issue.

    i salute your saying “In vain have you acquired knowledge if you have not imparted it to others”.

    Reply

Leave a Comment