VM'imin başlangıçta çalışmasını sağlayamıyorum.
Ben "başlangıç uygulamaları" ve güncelleme-rc.d şanssız denedim.
sudo update-rc.d startvms defaults 99 10
Bu, farklı çalışma seviyeleri için tüm uygun sembolik bağlantıları yarattı, ancak VM yine de başlamıyor.
İşte benim startvms betiğim:
#!/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
Neyi yanlış yapıyorum?
VBoxManage startvm --type headless "UbuntuServer"
yerine denediyseniz ne olur VBoxHeadless
?
su -c 'VBoxHeadless --startvm <MACHINE>'
.