Skip to content

Instantly share code, notes, and snippets.

@arsham
Created January 16, 2019 16:04
Show Gist options
  • Save arsham/ebe85c48612ded8c962a878df0f3e768 to your computer and use it in GitHub Desktop.
Save arsham/ebe85c48612ded8c962a878df0f3e768 to your computer and use it in GitHub Desktop.
Clone a #virtualbox image and start headless
VBoxManage clonevm original_vm --name new_vm --register
# Change some properties
VBoxManage modifyvm new_vm --memory 6144 --vram 64
VBoxManage modifyvm new_vm --cpus 6
VBoxManage modifyvm new_vm --bridgeadapter1 enp0s3
# Start headless
VBoxManage startvm new_vm --type headless
# Listing vms
VBoxManage list vms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment