Created
January 16, 2019 16:04
-
-
Save arsham/ebe85c48612ded8c962a878df0f3e768 to your computer and use it in GitHub Desktop.
Clone a #virtualbox image and start headless
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
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