Skip to content

Instantly share code, notes, and snippets.

@testpilot031
Created June 29, 2018 08:57
Show Gist options
  • Save testpilot031/39ee391386a013cab8722d83a56a0f93 to your computer and use it in GitHub Desktop.
Save testpilot031/39ee391386a013cab8722d83a56a0f93 to your computer and use it in GitHub Desktop.

VM の一覧を表示 $ VBoxManage list vms "Ubuntu17.04" {5ddf05d4-5a41-11e7-80c9-00042e01623a} "CentOS7" {642b939e-5a41-11e7-9d2f-00042e01623a}

VM を起動する Video コンソール有り: $ VBoxManage startvm "Ubuntu17.04" Video コンソール無し: $ VBoxManage startvm 642b939e-5a41-11e7-9d2f-00042e01623a --type headless 以下、パラメータを仮想環境名にしていますが、仮想環境名 or UUID どちらでも指定可能です。

動作中の VM 一覧を表示 $ VBoxManage list runningvms

VM を停止する 電源off: $ VBoxManage controlvm "Ubuntu17.04" poweroff リセット $ VBoxManage controlvm "Ubuntu17.04" reset

VMを削除する 引数はUUIDでもOK vagrantで destroyしても"A box must be specified"というエラーで消えない時はこれで消す。

$ sudo VBoxManage list vms | cut -d" " -f1 "grandson" "precise64" $ sudo VBoxManage unregistervm "grandson" $ sudo VBoxManage list vms | cut -d" " -f1 "precise64"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment