Last active
May 31, 2016 07:21
-
-
Save mojzis/8081b89c3efa2b8c6a4172dd6fb5985e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# show running virtual machines | |
# https://www.virtualbox.org/manual/ch08.html#vboxmanage-list | |
VBoxManage list runningvms | |
# cleanup - list all vms, delete by name (checking the list of folders for date modified can help :) | |
VBoxManage list vms | |
VBoxManage unregistervm --delete XXX (name or uid) | |
# show what vagrant has running | |
vagrant global-status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment