W Weaseal Apr 14, 2012 #1 Does any system exist for automated launching of a VirtualBox guest by a FreeBSD host at boot? Code: $ uname -mrs FreeBSD 9.0-RELEASE amd64
Does any system exist for automated launching of a VirtualBox guest by a FreeBSD host at boot? Code: $ uname -mrs FreeBSD 9.0-RELEASE amd64
vermaden Apr 14, 2012 #4 @Weaseal Sure: /etc/rc.conf Code: vboxnet_enable="YES" vboxheadless_enable="YES" vboxheadless_machines="Webserver" vboxheadless_Webserver_flags="-s Webserver-n -m 54321 -o PASSWORD" Also check: http://code.google.com/p/phpvirtualbox/
@Weaseal Sure: /etc/rc.conf Code: vboxnet_enable="YES" vboxheadless_enable="YES" vboxheadless_machines="Webserver" vboxheadless_Webserver_flags="-s Webserver-n -m 54321 -o PASSWORD" Also check: http://code.google.com/p/phpvirtualbox/
OP W Weaseal Sep 11, 2012 Thread Starter #5 Thanks, this did the trick! (Combined with the awesome phpvirtualbox port).