Update Virtual Machine with Vagrant authored by Katharina Renk's avatar Katharina Renk
......@@ -42,3 +42,33 @@ vagrant ssh
## Option 2: Access VM via VirtualBox
Simply open VirtualBox. The VM will appear there:
![VirtualBox](uploads/1c345175cb5768d2b9b0f8baa1c19ac5/VirtualBox.png)
# Useful commands
Start/build VM
```bash
vagrant up
```
Remove VM (this also deletes all stored data)
```bash
vagrant destroy
```
Stop VM
```bash
vagrant halt
```
Resume VM
```bash
vagrant resume
```
Suspend VM
```bash
vagrant suspend
```
Status of VM
```bash
vagrant status
```
Take a snapshot
```bash
vagrant snapshot
```
\ No newline at end of file