File tree Expand file tree Collapse file tree 1 file changed +38
-2
lines changed Expand file tree Collapse file tree 1 file changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ and Linux (though we recommend the native installations linked above).
52
52
#. Install SSH (Windows only - SSH is present by default on Linux/Mac OSX)
53
53
54
54
* Download and install `Git for Windows <https://git-scm.com/download/win >`_ (or another client that comes with SSH).
55
- After installing you can locate the file using the command ``C:\where ssh `` (normally it is installed to **C:\ P rogram Files (x86)\ G it\ b in\ s sh.exe **
55
+ After installing you can locate the file using the command ``C:\where ssh `` (normally it is installed to **C:/ Program Files (x86)/ Git/ bin/ ssh.exe **
56
56
* Add the ssh.exe location to the *Path * (**System Properties | Advanced tab | Environment Variables | Path **)
57
57
58
58
#. Create a new directory where you will run *Vagrant *, and open a command prompt/terminal in it:
@@ -88,7 +88,7 @@ and Linux (though we recommend the native installations linked above).
88
88
89
89
.. _disable-arming-checks :
90
90
91
- # . Load a default set of parameters and disable the arming check:
91
+ 7 . Load a default set of parameters and disable the arming check:
92
92
93
93
.. code :: bash
94
94
@@ -102,6 +102,42 @@ and Linux (though we recommend the native installations linked above).
102
102
103
103
You should never disable the arming check in a script or on a real vehicle.
104
104
105
+
106
+ Restarting
107
+ ----------
108
+
109
+ When you've finished using the simulation you can suspend the virtual machine with the command
110
+ ``vagrant suspend `` and later restart it using ``vagrant resume ``. Alternatively you can power-down
111
+ the machine using the `halt <http://docs.vagrantup.com/v2/cli/halt.html >`_ command
112
+ and later restart it using ``vagrant up ``:
113
+
114
+ .. code-block :: bash
115
+
116
+ vagrant halt
117
+ vagrant up
118
+
119
+
120
+
121
+
122
+ Troubleshooting
123
+ ---------------
124
+
125
+ In most cases problems can be fixed by halting and restarting vagrant:
126
+
127
+ .. code-block :: bash
128
+
129
+ vagrant halt
130
+ vagrant up
131
+
132
+ If this does not work then the "nuclear option" is to destroy and restart the environment:
133
+
134
+ .. code-block :: bash
135
+
136
+ vagrant destroy
137
+ vagrant up
138
+
139
+
140
+
105
141
106
142
.. _viewing_uav_on_map :
107
143
You can’t perform that action at this time.
0 commit comments