Skip to content

Instantly share code, notes, and snippets.

@tukiyo
Last active April 9, 2020 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tukiyo/5864520 to your computer and use it in GitHub Desktop.
Save tukiyo/5864520 to your computer and use it in GitHub Desktop.
Virtualboxの仮想マシンをコマンドラインから操作 ref: https://qiita.com/tukiyo3/items/5ecea7f95cb961f07194
$ VBoxManage list vms
"ubuntu_130464" {2cbe2351-acc8-4a11-9636-d2a4827e3eaa}
"windowsxp" {431511a2-42ae-419d-9395-4d90b20f1b24}
$ VBoxManage startvm "windowsxp" --type headless
$ VBoxManage list runningvms
$ VBoxManage controlvm ubuntu_130464 acpipowerbutton
$ VBoxManage controlvm windowsxp acpipowerbutton
$ VBoxManage controlvm ubuntu_130464 poweroff
$ VBoxManage controlvm windowsxp poweroff
$ VBoxManage controlvm ubuntu_130464 savestate
$ VBoxManage controlvm windowsxp savestate
$ VBoxManage controlvm ubuntu_130464 savestate
$ VBoxManage controlvm windowsxp savestate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment