https://github.com/thecraftman/vagrant-commands
A Compiled list of Vagrant commands.
https://github.com/thecraftman/vagrant-commands
environment github hashicorp linux opensource ubuntu vagrant vagrantcommands virtual-machine virtualization
Last synced: 6 months ago
JSON representation
A Compiled list of Vagrant commands.
- Host: GitHub
- URL: https://github.com/thecraftman/vagrant-commands
- Owner: thecraftman
- Created: 2020-04-29T01:17:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-19T11:25:58.000Z (about 4 years ago)
- Last Synced: 2025-03-21T14:11:30.339Z (7 months ago)
- Topics: environment, github, hashicorp, linux, opensource, ubuntu, vagrant, vagrantcommands, virtual-machine, virtualization
- Homepage:
- Size: 104 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
| **Function Name** | **Description** |
|--------------|---------------------|
|[base64_encode_tostring](#What-is-vagrant)||# vagrant-commands
## What is vagrant
Vagrant is a tool for working with virtual environments. Vagrant provides a simple and easy to use command-line client for managing environments.Download vagrant [here](https://www.vagrantup.com/downloads.html)
### Below is a list of some Vagrants Commands that vagrant provides to make managing your virtual machines much simpler.
**- Vagrant Status**
This command shows the current status of the vi
al machine. It should currently read `default running (virtualbox)` along with some other information.**- Vagrant Suspend**
This command suspends the virtual machine. Most of the work done is saved and the machine is put into a `sleep mode of sorts`. The machine state is saved and it’s very quick to stop and start the work done.
This command is applicable if you don't want to leave the machine running during short breaks.
**- Vagrant Up**
This command gets the virtual machine up and running again.
**- Vagrant ssh**
This Command will actually connect to and log into the Virtual machine. Once this is implemented a few lines of text will be displayed showing various performance statistics of the virtual machine along with a new command line prompt that reads **vagrant@vagrant-ubuntu-trusty-64:~$**
**- Vagrant halt**
This command halts the virtual machine. All the work done on it is saved and the machine is turned off. This acts as the `"turning the power off"`. It’s much slower to stop and start your virtual machine using this command, but it does free up all of your RAM once the machine has been stopped.