Guest User

Untitled

a guest
Jan 16th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. VBoxManage clonevm original_vm --name new_vm --register
  2.  
  3. # Change some properties
  4. VBoxManage modifyvm new_vm --memory 6144 --vram 64
  5. VBoxManage modifyvm new_vm --cpus 6
  6. VBoxManage modifyvm new_vm --bridgeadapter1 enp0s3
  7.  
  8. # Start headless
  9. VBoxManage startvm new_vm --type headless
  10.  
  11. # Listing vms
  12. VBoxManage list vms
Add Comment
Please, Sign In to add comment