ホストのシャットダウン時に全てのVirtualBoxを停止する - 揮発性のメモ の補足
sshでログインしてVirtualBoxを起動しようとすると、エラーになる
$ vboxmanage startvm 6896afdb-8060-4293-b9de-99e17af82c57 Waiting for the VM to power on... VBoxManage: error: The virtual machine 'hogehoge' has terminated unexpectedly during startup with exit code 0 VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component Machine, interface IMachine, callee $
どうも、Xが悪いらしい。困ったときは本家に頼る。
virtualbox.org • View topic - NS_ERROR_FAILURE (0x80004005)
DISPLAY=:0 の指定ではうまくいかなかったので、画面無しで起動するオプションで解決
$ vboxmanage startvm 6896afdb-8060-4293-b9de-99e17af82c57 --type headless Waiting for the VM to power on... VM has been successfully started. $