Page 1 of 1

HowTo: Install VirtualBox on Ubuntu server 14.04

Posted: Thu Oct 29, 2015 11:36 pm
by ^rooker
I want to install VirtualBox on a headless Ubuntu server (14.04. 3 64bits) host.
I've never done that before in that way, so I'll take notes here.

First of all:
Seems, whatever I'm doing, Falko Timme did it first - and wrote a HowTo about it! :shock:
They're usually very excellent. So here's another one:
VBoxHeadless - Running Virtual Machines With VirtualBox 4.3 On A Headless Ubuntu 14.04 LTS Server

It seems that VirtualBox can be installed from Ubuntu's default repositories (instead of requiring to add the ones from Oracle):

Code: Select all

$ apt-get install virtualbox
According to Information on the VirtualBox website:
Before version 4.0, there were two editions of VirtualBox: a full binary containing all features and an "Open Source Edition" (OSE) with source code. With version 4.0, there is only one version any more, which is open source, and the closed-source components have been moved to a separate extension pack.

Manage VirtualBox VMs from the command line

Posted: Fri Oct 30, 2015 9:14 pm
by ^rooker
Exporting to "Open Virtualization Format" (.ovf):

Code: Select all

$ VBoxManage export "vm_name" --output VM_CLONE_FILE.ovs
Importing from OVF files:

Code: Select all

$ VBoxManage import VM_CLONE_FILE.ovs

Further notes for headless handling of VirtualBox VMs: