How to Install VirtualBox 6 on Debian 10

Channel: VirtualBox Debian Linux
Abstract: you need to create a VirtualBox repository configuration file called /etc/apt/source.list.d/virtualbox.list using the following command. # vim /etc/ap

VirtualBox is a most popular x86 and AMD64/Intel64 virtualization software for organizations as well as home users with an highly feature rich, high performance software solution that is freely available as Open Source product under the terms of the GNU General Public License.

VirtualBox extends the capabilities of your existing computer (running the host operating system) so that it can run multiple operating systems, inside multiple virtual machines, simultaneously.

In this article, we will explain how to install VirtualBox 6.0 on Debian 10 distribution using VirtualBox’s own repository with APT package manager.

Adding VirtualBox Repository on Debian 10

First, you need to create a VirtualBox repository configuration file called /etc/apt/source.list.d/virtualbox.list using the following command.

# vim /etc/apt/source.list.d/virtualbox.list

Add the following line to your /etc/apt/sources.list file.

deb https://download.virtualbox.org/virtualbox/debian  buster contrib

Save the file and exit it.

Next, download and install the Oracle public key for apt-secure by running the following commands.

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

Now update the APT packages cache and install VirtualBox package as follows.

# apt-get update
# apt-get install virtualbox-6.0
Install VirtualBox in Debian 10

Once the installation is complete, search for VirtualBox in the system menu or open a terminal window and run the following command to open it.

# virtualbox
VirtualBox 6 Running on Debian 10 Installing VirtualBox Extension Pack in Debian 10

Another useful component of Oracle VM VirtualBox is the VirtualBox extensions pack which extend the functionality of the Oracle VM VirtualBox base package.

The extension pack offers additional functionality such as the virtual USB 2.0 (EHCI) device, and virtual USB 3.0 (xHCI) device. It also provides VirtualBox Remote Desktop Protocol (VRDP) support, Host webcam pass-through, Intel PXE boot ROM as well as Disk image encryption with AES algorithm.

Read Also: How to Enable USB in VirtualBox

You need this extension pack for features such as mouse pointer integration, shared folders, better video support, seamless windows, generic guest/host communication channels, shared clipboard, automated logins, and more.

To download the VirtualBox Extension Pack, you can use the wget command from the command-line as follows.

# cd Downloads
# wget http://download.virtualbox.org/virtualbox/6.0.0/Oracle_VM_VirtualBox_Extension_Pack-6.0.10.vbox-extpack

After downloading the extensions pack, go to File –> Preferences –> Extensions and click on the + sign to browse for the vbox-extpack file to install it as shown in the following screenshot.

Install VirtualBox Extension Pack on Debian 10

Once you have selected the extension pack file, read the message from the dialog box and click on Install. Next, read the use and evaluation License (scroll down) and click I Agree to start the installation process. Note that if you are logged in as a non-administrative user, you will be prompted to enter your root user password, enter it to proceed.

Accept License Agreement VirtualBox Extension Pack Installed

After clicking OK from the above interface, the extension pack should be listed under Extensions as shown in the following screenshot.

Check VirtualBox Extension Pack

That’s all! In this guide, we have shown how to install VirtualBox 6 on Debian 10. We hope that everything went on fine, otherwise reach us via the feedback form below.

Ref From: tecmint

Related articles