ฉันไม่สามารถทำให้ VM ของฉันทำงานเมื่อเริ่มต้นได้
ฉันลอง "แอปพลิเคชั่นเริ่มต้น" และอัปเดต -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>'
ได้