... | @@ -42,3 +42,33 @@ vagrant ssh |
... | @@ -42,3 +42,33 @@ vagrant ssh |
|
## Option 2: Access VM via VirtualBox
|
|
## Option 2: Access VM via VirtualBox
|
|
Simply open VirtualBox. The VM will appear there:
|
|
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 |