Thursday, 25 October 2018

How To Install VirtualBox 5.2 on Linux Mint 19 / Linux Mint 18

VirtualBox is an open-source hypervisor application that helps you create and run guest operating systems (“virtual machines”) such as Linux and Windows under a host operating system. VirtualBox can be installed on host operating systems, including LinuxWindows, Solaris, OS X, and OpenSolaris. 

From the version 2.0 VirtualBox supports 32 and 64bit host and guest operating systems. If you want to install 64bit guests then your processor must support hardware virtualization and, of course, the host operating system must be 64bit as well.

VirtualBox is released under GPL v2 and Oracle VM VirtualBox extension pack is released under PUEL (Personal Use and Evaluation License).

Steps to Install VirtualBox 5.2 on Linux Mint 19 / Linux Mint 18

STEP 1: Open up a terminal and Import the public key of the Oracle VirtualBox repository to your system.

wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -

STEP 2 : Add the VirtualBox repository using the following command.

### Linux Mint 19 ###
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bionic contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list

### Linux Mint 18 ###
echo "deb http://download.virtualbox.org/virtualbox/debian xenial contrib"  | sudo tee /etc/apt/sources.list.d/virtualbox.list

STEP 3 : Update the repository index database.

sudo apt-get update

STEP 4 : Install the VirtualBox 5.2 using the apt command.

sudo apt-get install virtualbox-5.2
Thats it.




Related Posts:

0 comments:

Post a Comment