Added `vagrant status` docs

This commit is contained in:
Mitchell Hashimoto 2010-03-16 12:08:04 -07:00
parent 8c7e03d5fe
commit 3e3411f7ff
1 changed files with 14 additions and 7 deletions

View File

@ -21,6 +21,7 @@ vagrant-package
vagrant-reload
vagrant-resume
vagrant-ssh
vagrant-status
vagrant-suspend
vagrant-up
{% endhighlight %}
@ -75,13 +76,6 @@ residing at the root of your project directory should be included, see [Vagrant
When you're ready to get rolling again its just as easy to start your virtual machine back up with
`vagrant resume`.
<a name="vagrant-suspend"> </a>
## vagrant suspend
When you're ready to call it quits for the day, there's no need to leave your Vagrant box soaking
up cpu cycles and memory. Simply issue `vagrant suspend` from your project root and VirtualBox will
take a snapshot of the box's current state from which you can resume later.
<a name="vagrant-ssh"> </a>
## vagrant ssh
@ -90,6 +84,19 @@ you could use ssh directly, but using `vagrant ssh` means you don't have to reme
or what port ssh is forwarded to from your box. To learn more about those settings see the section on the [Vagrantfile](/docs/vagrantfile.html).
If you're box is booted simply run `vagrant ssh` from the root of your project directory.
<a name="vagrant-status"> </a>
## vagrant status
Its often hard to keep track and remember whether or not you brought up a virtual environment, shut
it down, suspended it, etc. `vagrant status` tells you the status of your current project's environment.
<a name="vagrant-suspend"> </a>
## vagrant suspend
When you're ready to call it quits for the day, there's no need to leave your Vagrant box soaking
up cpu cycles and memory. Simply issue `vagrant suspend` from your project root and VirtualBox will
take a snapshot of the box's current state from which you can resume later.
<a name="vagrant-up"> </a>
## vagrant up