From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/vagrant/installation%2Funinstallation.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 devdocs/vagrant/installation%2Funinstallation.html (limited to 'devdocs/vagrant/installation%2Funinstallation.html') diff --git a/devdocs/vagrant/installation%2Funinstallation.html b/devdocs/vagrant/installation%2Funinstallation.html new file mode 100644 index 00000000..f727b004 --- /dev/null +++ b/devdocs/vagrant/installation%2Funinstallation.html @@ -0,0 +1,13 @@ +

Uninstalling Vagrant

Uninstalling Vagrant is easy and straightforward. You can either uninstall the Vagrant binary, the user data, or both. The sections below cover how to do this on every platform.

Removing the Vagrant Program

Removing the Vagrant program will remove the vagrant binary and all dependencies from your machine. After uninstalling the program, you can always reinstall again using standard methods.

On Windows

Uninstall using the add/remove programs section of the control panel

On Mac OS X:

rm -rf /opt/vagrant
+rm -f /usr/local/bin/vagrant
+sudo pkgutil --forget com.vagrant.vagrant
+
+

On Linux:

rm -rf /opt/vagrant
+rm -f /usr/bin/vagrant
+
+

Removing User Data

Removing the user data will remove all boxes, plugins, license files, and any stored state that may be used by Vagrant. Removing the user data effectively makes Vagrant think it is a fresh install.

On all platforms, remove the ~/.vagrant.d directory to delete the user data. When debugging, the Vagrant support team may ask you to remove this directory. Before removing this directory, please make a backup.

Running Vagrant will automatically regenerate any data necessary to run, so it is safe to remove the user data at any time.

+

+ © 2010–2018 Mitchell Hashimoto
Licensed under the MPL 2.0 License.
+ https://www.vagrantup.com/docs/installation/uninstallation.html +

+
-- cgit v1.2.3