Parece que no puedo hacer que mi VM se ejecute al inicio.
Probé las "aplicaciones de inicio" y update-rc.d sin suerte.
sudo update-rc.d startvms defaults 99 10
Esto creó todos los enlaces simbólicos apropiados para los diferentes niveles de ejecución, pero la VM todavía no se inicia.
Aquí está mi script startvms:
#!/bin/bash
### BEGIN INIT INFO
# Provides: startvms
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start my VMs at boot time
# Description: Enable service provided by daemon.
### END INIT INFO
case "$1" in
start)
echo "Starting"
nohup VBoxHeadless --startvm "UbuntuServer" &
;;
stop)
echo "Stopping $DESC"
VBoxManage controlvm "UbuntuServer" poweroff
;;
restart|force-reload)
echo "Restarting $DESC"
VBoxManage controlvm "UbuntuServer" poweroff
nohup VBoxHeadless --startvm "UbuntuServer" &
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
¿Qué estoy haciendo mal?
VBoxManage startvm --type headless "UbuntuServer"
lugar del VBoxHeadless
comando?
su -c 'VBoxHeadless --startvm <MACHINE>'
.