Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
goSDN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
danet
goSDN
Wiki
Deployment
Virtual Machine with Vagrant
Changes
Page history
New page
Templates
Clone repository
Update Virtual Machine with Vagrant
authored
2 years ago
by
Katharina Renk
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Deployment/Virtual-Machine-with-Vagrant.md
+31
-1
31 additions, 1 deletion
Deployment/Virtual-Machine-with-Vagrant.md
with
31 additions
and
1 deletion
Deployment/Virtual-Machine-with-Vagrant.md
View page @
9ba3d811
...
@@ -41,4 +41,34 @@ vagrant ssh
...
@@ -41,4 +41,34 @@ 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:


\ No newline at end of file
# 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
This diff is collapsed.
Click to expand it.