<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Configure Wifi Settings on Raspberry Pi Zero 2 W using the SD Card]]></title><description><![CDATA[<p dir="auto">To setup a new WiFi connection on the Raspberry Pi using only the SD card, you will need to create a new file in <code>/etc/NetworkManager/system-connections</code> called <code>MySSID.nmconnection</code>. Replace the <code>MySSID</code> with the name of your network, if your network has spaces create it like this: <code>sudo nano 'My Network With Spaces.nmconnection'</code>.</p>
<p dir="auto">For the contents of the file, it needs to look like this:</p>
<pre><code>[connection]
id=My Network With Spaces
uuid=
type=wifi

[wifi]
cloned-mac-address=
mode=infrastructure
ssid=My Network With Spaces

[wifi-security]
key-mgmt=wpa-psk
psk=My Network Password

[ipv4]
method=auto

[ipv6]
addr-gen-mode=stable-privacy
method=auto

[proxy]
</code></pre>
<p dir="auto">Be sure to change <code>id</code> and <code>ssid</code> to be the name of your network, you don’t need to add quotes if there are spaces in your networks name. Also be sure to change <code>psk</code> to be your network password. When you are done use <code>Ctrl+X</code> to save the changes.</p>
<p dir="auto">Now we need to restrict the file’s access rights because NetworkManager requires it to be only accessible by root:<br />
<code>sudo chmod -R 600 /etc/NetworkManager/system-connections/MySSID.nmconnection</code><br />
<code>sudo chown -R root:root /etc/NetworkManager/system-connections/MySSID.nmconnection</code></p>
<p dir="auto">Now you should be able to automatically connect to your WiFi network during the next boot.</p>
]]></description><link>https://forum.sumisu.xyz/topic/22/configure-wifi-settings-on-raspberry-pi-zero-2-w-using-the-sd-card</link><generator>RSS for Node</generator><lastBuildDate>Sat, 30 May 2026 23:26:01 GMT</lastBuildDate><atom:link href="https://forum.sumisu.xyz/topic/22.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 11 Sep 2024 04:49:53 GMT</pubDate><ttl>60</ttl></channel></rss>