我似乎无法让我的VM在启动时运行。
我没有运气就尝试了“启动应用程序”和update-rc.d。
sudo update-rc.d startvms defaults 99 10
这为不同的运行级别创建了所有适当的符号链接,但VM仍然无法启动。
这是我的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
我究竟做错了什么?
VBoxManage startvm --type headless "UbuntuServer"
代替VBoxHeadless
命令怎么办?
su -c 'VBoxHeadless --startvm <MACHINE>'
。