+Since standard Raspbian 10 (Buster) install involves copying
+unencrypted file system image to SD card which is mounted by the
+Raspberry Pi, system memory may be written to disk in the form of a
+Swap file as described <a href="https://ideaheap.com/2013/07/stopping-sd-card-corruption-on-a-raspberry-pi/">here</a>. In order to reduce the chance that
+location log data is ever written to disk, swap file functionality
+must be disabled<sup><a id="fnr.1" class="footref" href="#fn.1">1</a></sup>.
+</p>
+
+<p>
+Raspbian 10 uses dphys-swapfile to manage a swap file. It may be
+disabled persistently<sup><a id="fnr.2" class="footref" href="#fn.2">2</a></sup> by running
+the following command:
+</p>
+
+<pre class="example">
+sudo systemctl disable dphys-swapfile.service
+
+</pre>
+
+<p>
+To view the status of the swap file in Raspbian 10, run <code>free -m</code>:
+</p>
+
+<pre class="example">
+pi@ninfacyzga-01:~$ free -m
+          total    used    free  shared  buff/cache   available
+Mem:        432      86      36      21         309         268
+Swap:        99       0      99
+</pre>
+
+<p>
+After disabling the swap file and rebooting:
+</p>
+
+<pre class="example">
+pi@ninfacyzga-01:~$ free -m
+          total    used    free  shared  buff/cache   available
+Mem:        432      89     214       3         128         289
+Swap:         0       0       0
+</pre>
+</div>
+</li>
+
+<li><a id="orgfdbf7d1"></a>Automatic Start Configuration<br />
+<div class="outline-text-6" id="text-1-3-1-2-3">
+<p>