Site updated at 2017-08-20 21:23:13 UTC

This commit is contained in:
Travis CI 2017-08-20 21:23:13 +00:00
parent a61a090000
commit 12bd06e7fa
26 changed files with 44 additions and 40 deletions

View file

@ -94,7 +94,11 @@
</ul>
<h3><a class="title-link" name="wireless-network" href="#wireless-network"></a> Wireless Network</h3>
<p>After flashing the image to your SD Card open the partition <code class="highlighter-rouge">boot</code> and create a new file <code class="highlighter-rouge">wpa_supplicant.conf</code>. Edit the file and enter your network credentials. For more information visit <a href="https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md">Setting up Wifi for Raspbian</a>. During start the file will automatically be copied in the right folder and the network connection will be established. The file could look like this:</p>
<div class="language-conf highlighter-rouge"><pre class="highlight"><code><span class="n">network</span>={
<div class="language-conf highlighter-rouge"><pre class="highlight"><code><span class="n">country</span>=<span class="n">SE</span>
<span class="n">ctrl_interface</span>=<span class="n">DIR</span>=/<span class="n">var</span>/<span class="n">run</span>/<span class="n">wpa_supplicant</span> <span class="n">GROUP</span>=<span class="n">netdev</span>
<span class="n">update_config</span>=<span class="m">1</span>
<span class="n">network</span>={
<span class="n">ssid</span>=<span class="s2">"YOUR_SSID"</span>
<span class="n">psk</span>=<span class="s2">"YOUR_PASSWORD"</span>
}