This step by step tutorial explains how to install Oracle VirtualBox on Ubuntu 18.04.2 LTS headless server and how to manage the VirtualBox headless instances using phpVirtualBox, a web-based front-end tool for VirtualBox. The steps described below might also work on Debian and other Ubuntu derivatives such as Linux Mint. Let us get started.
Table of Contents
Prerequisites
Before installing Oracle VirtualBox, we need to do the following prerequisites in our Ubuntu 18.04.2 LTS server.
First of all, make sure you have enabled universe and multiverse repositories if they are not enabled already. These repositories are required to install some dependencies while installing Virtualbox.
$ sudo add-apt-repository universe
$ sudo add-apt-repository multiverse
And then, update the Ubuntu server by running the following commands one by one.
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
Next, install the following necessary packages:
$ sudo apt install build-essential dkms unzip wget
After installing all updates and necessary prerequisites, restart the Ubuntu server.
$ sudo reboot
Install Oracle VirtualBox on Ubuntu 18.04 LTS server
Add Oracle VirtualBox official repository. To do so, edit /etc/apt/sources.list file:
$ sudo nano /etc/apt/sources.list
Add the following lines.
Here, I will be using Ubuntu 18.04.2 LTS, so I have added the following repository.
deb http://download.virtualbox.org/virtualbox/debian bionic contrib
Replace the word 'bionic' with your Ubuntu distribution's code name, such as 'xenial', 'vivid', 'utopic', 'trusty', 'raring', 'quantal', 'precise', 'lucid', 'jessie', 'wheezy', or 'squeeze'.
Then, run the following command to add the Oracle public key:
$ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
For VirtualBox older versions, add the following key:
$ wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
Next, update the software sources using command:
$ sudo apt update
Finally, install latest Oracle VirtualBox latest version using command:
$ sudo apt install virtualbox-5.2
Adding users to VirtualBox group
We need to create and add our system user to the vboxusers group. You can either create a separate user and assign it to vboxusers group or use the existing user. I don't want to create a new user, so I added my existing user to this group. Please note that if you use a separate user for virtualbox, you must log out and log in to that particular user and do the rest of the steps.
I am going to use my username named sk, so, I ran the following command to add it to the vboxusers group.
$ sudo usermod -aG vboxusers sk
Now, run the following command to check if virtualbox kernel modules are loaded or not.
$ sudo systemctl status vboxdrv
As you can see in the above screenshot, the vboxdrv module is loaded and running!
For older Ubuntu versions, run:
$ sudo /etc/init.d/vboxdrv status
If the virtualbox module doesn't start, run the following command to start it.
$ sudo /etc/init.d/vboxdrv setup
Great! We have successfully installed VirtualBox and started virtualbox module. Now, let us go ahead and install Oracle VirtualBox extension pack.
Install VirtualBox Extension pack
The VirtualBox Extension pack provides the following functionalities to the VirtualBox guests.
- The virtual USB 2.0 (EHCI) device
- VirtualBox Remote Desktop Protocol (VRDP) support
- Host webcam passthrough
- Intel PXE boot ROM
- Experimental support for PCI passthrough on Linux hosts
Download the latest Extension pack for VirtualBox 5.2.x from here.
$ wget https://download.virtualbox.org/virtualbox/5.2.30/Oracle_VM_VirtualBox_Extension_Pack-5.2.30.vbox-extpack
Install Extension pack using command:
$ sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-5.2.30.vbox-extpack
Congratulations! We have successfully installed Oracle VirtualBox with extension pack in Ubuntu 18.04 LTS server. It is time to deploy virtual machines. Refer the virtualbox official guide to start creating and managing virtual machines in command line.
Not everyone is command line expert. Some of you might want to create and use virtual machines graphically. No worries! Here is where phpVirtualBox comes in handy!!
About phpVirtualBox
PhpVirtualBox is a free, web-based front-end to Oracle VirtualBox. It is written using PHP language. Using phpVirtualBox, we can easily create, delete, manage and administer virtual machines via a web browser from any remote system on the network.
Install phpVirtualBox in Ubuntu 18.04 LTS
Since it is a web-based tool, we need to install Apache web server, PHP and some php modules.
To do so, run:
$ sudo apt install apache2 php php-mysql libapache2-mod-php php-soap php-xml
Then, Download the phpVirtualBox 5.2.x version from the releases page. Please note that we have installed VirtualBox 5.2, so we must install phpVirtualBox version 5.2 as well.
To download it, run:
$ wget https://github.com/phpvirtualbox/phpvirtualbox/archive/5.2-1.zip
Extract the downloaded archive with command:
$ unzip 5.2-1.zip
This command will extract the contents of 5.2.1.zip file into a folder named "phpvirtualbox-5.2-1". Now, copy or move the contents of this folder to your apache web server root folder.
$ sudo mv phpvirtualbox-5.2-1/ /var/www/html/phpvirtualbox
Assign the proper permissions to the phpvirtualbox folder.
$ sudo chmod 777 /var/www/html/phpvirtualbox/
Next, let us configure phpVirtualBox.
Copy the sample config file as shown below.
$ sudo cp /var/www/html/phpvirtualbox/config.php-example /var/www/html/phpvirtualbox/config.php
Edit phpVirtualBox config.php file:
$ sudo nano /var/www/html/phpvirtualbox/config.php
Find the following lines and replace the username and password with your system user (The same username that we used in "Adding users to VirtualBox group" section).
In my case, my Ubuntu system username is sk, and its password is ubuntu.
var $username = 'sk'; var $password = 'ubuntu';
Save and close the file.
Next, create a new file called /etc/default/virtualbox:
$ sudo nano /etc/default/virtualbox
Add the following line. Replace 'sk' with your own username.
VBOXWEB_USER=sk
Finally, Reboot your system or simply restart the following services to complete the configuration.
$ sudo systemctl restart vboxweb-service
$ sudo systemctl restart vboxdrv
$ sudo systemctl restart apache2
Adjust firewall to allow Apache web server
By default, the apache web browser can't be accessed from remote systems if you have enabled the UFW firewall in Ubuntu 18.04 LTS. You must allow the http and https traffic via UFW by following the below steps.
First, let us view which applications have installed a profile using command:
$ sudo ufw app list Available applications: Apache Apache Full Apache Secure OpenSSH
As you can see, Apache and OpenSSH applications have installed UFW profiles.
If you look into the "Apache Full" profile, you will see that it enables traffic to the ports 80 and 443:
$ sudo ufw app info "Apache Full" Profile: Apache Full Title: Web Server (HTTP,HTTPS) Description: Apache v2 is the next generation of the omnipresent Apache web server. Ports: 80,443/tcp
Now, run the following command to allow incoming HTTP and HTTPS traffic for this profile:
$ sudo ufw allow in "Apache Full" Rules updated Rules updated (v6)
If you don't want to allow https traffic, but only http (80) traffic, run:
$ sudo ufw app info "Apache"
Access phpVirtualBox Web console
Now, go to any remote system that has graphical web browser.
In the address bar, type: http://IP-address-of-virtualbox-headless-server/phpvirtualbox.
In my case, I navigated to this link - http://192.168.225.22/phpvirtualbox
You should see the following screen. Enter the phpVirtualBox administrative user credentials.
The default username and phpVirtualBox is admin/admin.
Congratulations! You will now be greeted with phpVirtualBox dashboard.
Now, start creating your VMs and manage them from phpvirtualbox dashboard as the way you do in Virtualbox standalone application. As I mentioned earlier, You can access the phpVirtualBox from any system in the same network. All you need is a web browser and the username and password of phpVirtualBox.
I tested this guide on Ubuntu 18.04.2 LTS server and it worked just fine as described. However, If you ran into any problem, do check the comment section below. Some of our readers have provided a few tips to get this working on Ubuntu.
A note for installing 64-bit guest OS
If you haven't enabled virtualization support in the BIOS of host system (not the guest), phpVirtualBox allows you to create 32-bit guests only. To install 64-bit guest systems, you must enable virtualization in your host system's BIOS. Look for an option that is something like "virtualization" or "hypervisor" in your bios and make sure it is enabled.
Some of you might think why on earth anyone would use phpvirtualbox while we already have a better solution - KVM. This tutorial is mainly for those who get used to Oracle virtualbox. If you prefer KVM over Virtualbox, refer the following guide.
And, that's all. Hope this helps. If you find this guide useful, please share it on your social, professional networks and support us.
Reference links:
Thanks for stopping by!
Help us to help you:
- Subscribe to our Email Newsletter : Sign Up Now
- Support OSTechNix : Donate Via PayPal
- Download free E-Books and Videos : OSTechNix on TradePub
- Connect with us: Reddit | Facebook | Twitter | LinkedIn | RSS feeds
Have a Good day!!
47 comments
Thanks for this. But I get:
The following packages have unmet dependencies:
virtualbox-5.2 : Depends: libqt5x11extras5 (>= 5.6.0) but it is not installable
Recommends: libsdl-ttf2.0-0 but it is not installable
Recommends: pdf-viewer
When running sudo apt install virtualbox-5.2
Any ideas?
After see this: https://askubuntu.com/questions/1081243/why-do-i-need-to-enable-universe-repo-in-18-04-isnt-it-default-enabled
and running: sudo add-apt-repository universe
I was able to proceed
Awesome thanks! I was stuck there too!
Hmm.. everything seems to be working but when i try to login it says:
Exception Object
(
[message:protected] => DTD are not supported by SOAP (http://35.204.173.90:80/)
[string:Exception:private] =>
[code:protected] => 64
[file:protected] => /var/www/html/phpvirtualbox/endpoints/api.php
[line:protected] => 134
[trace:Exception:private] => Array
(
)
[previous:Exception:private] =>
)
i make it work try this
vboxwebsrv -H 127.0.0.1
Your instructions are on the mark! Much gratitude!
BEST VBOX TUTORIAL ON WEB!!!
Oracle Homepage looses against you!
after a short periode reading on your site, it can be seen: there’s a checker on work! good to know…
Thx man.
..it can be soo easy—
Brilliant guide, thankyou!
Just a heads up on Ubuntu server 18.04 I couldn’t for the life of me get virtualbox to run until I disabled secureboot, followed these instructions to do it : https://wiki.ubuntu.com/UEFI/SecureBoot/DKMS
Thank you. Glad it worked for you.
Exception Object
(
[message:protected] => Could not connect to host (http://127.0.0.1:18083/)
[string:Exception:private] =>
[code:protected] => 64
[file:protected] => /var/www/html/phpvirtualbox/endpoints/api.php
[line:protected] => 134
[trace:Exception:private] => Array
(
)
[previous:Exception:private] =>
)
● vboxweb-service.service
Loaded: loaded (/usr/lib/virtualbox/vboxweb-service.sh; enabled; vendor prese
Active: active (exited) since Fri 2019-02-22 18:10:56 UTC; 1min 17s ago
Process: 12659 ExecStop=/usr/lib/virtualbox/vboxweb-service.sh stop (code=exit
Process: 12667 ExecStart=/usr/lib/virtualbox/vboxweb-service.sh start (code=ex
févr. 22 18:10:56 ns3311288 systemd[1]: Starting vboxweb-service.service…
févr. 22 18:10:56 ns3311288 systemd[1]: Started vboxweb-service.service.
lines 1-8/8 (END)…skipping…
● vboxweb-service.service
Loaded: loaded (/usr/lib/virtualbox/vboxweb-service.sh; enabled; vendor preset: enabled)
Active: active (exited) since Fri 2019-02-22 18:10:56 UTC; 1min 17s ago
Process: 12659 ExecStop=/usr/lib/virtualbox/vboxweb-service.sh stop (code=exited, status=0/SUCCESS)
Process: 12667 ExecStart=/usr/lib/virtualbox/vboxweb-service.sh start (code=exited, status=0/SUCCESS)
févr. 22 18:10:56 ns3311288 systemd[1]: Starting vboxweb-service.service…
févr. 22 18:10:56 ns3311288 systemd[1]: Started vboxweb-service.service.
service starting work login
user admin
password admin
not work please solve
ok service not corect start
juste restart use full command line
/usr/lib/virtualbox/vboxweb-service.sh stop
/usr/lib/virtualbox/vboxweb-service.sh start
and working please update your tutorial
for add this command
Based on you tutorial I automated the installation and config, also updated the phpvirtualbox to latest and VirtualBox too. Anyone can use this script in terminal copy and execute this –> bash <(curl -sS https://raw.githubusercontent.com/adryo/scripts/develop/setup/macos-vm.sh) installVBoxClient –logon-password 'The current user's password'.
The –logon-password is to install and configure the vbox 6.0 and phpvirtualbox 5.2-1 unattended.
After installation remember to change the admin/admin credentials.
Give it a try.
Hi, sorry, I didn’t understand the last steps:
If you want to allow https traffic, but only http (80) traffic, run:
$ sudo ufw app info “Apache”
??? This is just a repeat of a previous step for ufw info, it doesn’t modify the ufw rules?
Otherwise, thanks!