diff --git a/docs/commands.md b/docs/commands.md index 4423456ae..2d4a3f6ed 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -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`. - -## 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. - ## 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. + +## 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. + + +## 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. + ## vagrant up