시작시 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>'
.