Changes
Page history
Update Virtual Machine with Vagrant
authored
Apr 25, 2023
by
Katharina Renk
Show whitespace changes
Inline
Side-by-side
Deployment/Virtual-Machine-with-Vagrant.md
View page @
9ba3d811
...
...
@@ -42,3 +42,33 @@ vagrant ssh
## Option 2: Access VM via VirtualBox
Simply open VirtualBox. The VM will appear there:

# 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