Virtualbox With No GUI?

Is it possible to run virtualbox as a host with no GUI? I want to build machines on a host with a GUI, then copy them to a FreeBSD host with no GUI and run them headless. Thanks.
 
Sure you can, just # make config and remove all GUI options.
Shuffling the HDD-ID's can be a bit tricky, but it's certainly possible.
 
I have installed virutalbox-ose from ports, but now am unable to run VBoxManage...

Code:
[dave@xxxx ~]$ VBoxManage import TestMachine.ovf --dry-run
Sun VirtualBox Command Line Management Interface Version 3.1.6_OSE
(C) 2005-2010 Sun Microsystems, Inc.
All rights reserved.

ERROR: failed to create a session object!
ERROR: code NS_ERROR_FACTORY_NOT_REGISTERED (0x80040154) - Class not registered (extended info not available)
Most likely, the VirtualBox COM server is not running or failed to start.

I have tried running as root and not as root. I have added my user to the vboxusers group.

Am I missing something?
 
riku said:
Yes, Virtualbox support headless vm start , use this command

Code:
VBoxHeadless -s VMname

No, this command will never return. Better use $ VBoxManage startvm VMname --type headless.
 
To follow up on this...

I installed virutalbox from packages and got it working OK. I will continue to test the version in ports, prob just a config issue.

Once I had virutalbox running, I was able to build a machine on my mac using the GUI, export it, import it on the FreeBSD host and start it up from the command line, and then access it via RDP (Windows), or SSH (*nix).
 
Back
Top