Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- VBoxManage startvm (vmname) --type headless # (replace with gui to have gui access)
- while :
- do
- sleep 3600 # interval between snapshots in seconds
- VBoxManage snapshot take (vmname)
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement