mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
22 lines
831 B
Text
22 lines
831 B
Text
---
|
|
layout: docs
|
|
page_title: vagrant suspend - Command-Line Interface
|
|
description: |-
|
|
The "vagrant suspend" command is used to suspend the guest machine Vagrant is
|
|
currently managing.
|
|
---
|
|
|
|
# Suspend
|
|
|
|
**Command: `vagrant suspend [name|id]`**
|
|
|
|
This suspends the guest machine Vagrant is managing, rather than fully
|
|
[shutting it down](/vagrant/docs/cli/halt) or [destroying it](/vagrant/docs/cli/destroy).
|
|
|
|
A suspend effectively saves the _exact point-in-time state_ of the machine,
|
|
so that when you [resume](/vagrant/docs/cli/resume) it later, it begins running
|
|
immediately from that point, rather than doing a full boot.
|
|
|
|
This generally requires extra disk space to store all the contents of the
|
|
RAM within your guest machine, but the machine no longer consumes the
|
|
RAM of your host machine or CPU cycles while it is suspended.
|