You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
340 B
Markdown

5 years ago
# Vagrant
* virtualize CLI. Required VM provider such as HyperV, VirtualBox, Vmware
* Box at [vagrant app](https://app.vagrantup.com/boxes)
* CLI (run as admin)
```shell
// init folder for vm setup
$ vagrant init bento/ubuntu-19.10
// spin up the vm
$ vagrant up
// login to vm
$ vagrant ssh
// shoutdown the vm
$ vagrant halt
```