How to Forget a Saved Wi-Fi Network on Your Raspberry Pi
Share
What you'll need
Interests
This short guide will show you how to delete, or “forget,” a saved wireless network from your Raspberry Pi. This is useful for changing networks or troubleshooting connectivity issues.
1 – Access the command line
Access the Raspberry Pi terminal using SSH or by connecting a keyboard, mouse, and monitor to your Pi.
How to Connect to a Raspberry Pi Remotely via SSH
The preferred (and most common) method of connecting to your Pi to run commands.
2 – Modify the existing wpa_supplicant config
Use the following command to access the full list of configured wireless networks:
/etc/wpa_supplicant/wpa_supplicant.conf
You’ll be prompted to enter your Raspberry Pi password—the default Raspberry Pi password is raspberrypi
. If you haven’t already, I highly recommend you change your Raspberry Pi’s password after logging in by running the following command:
passwd
3 – Delete a wireless network
To forget a specific Pi wireless network, delete the corresponding network block, surrounded by opening and closing {}
curly braces. For example, deleting the following will “forget” the serenity
network:
network={
ssid="serenity"
psk="shepherdBookHasScaryHair$1"
key_mgmt=WPA-PSK
}
If you want to forget a network but keep the configuration in place for later, you can uncomment the block instead by adding a #
symbol to the beginning of each line. For example, uncommenting the following will “forget” the serenity
network while keeping the details in the file for future use:
#network={
# ssid="serenity"
# psk="shepherdBookHasScaryHair$1"
# key_mgmt=WPA-PSK
#}
When you’re done, save and exit by pressing CTRL-X
, typing Y
, and pressing enter.
A recommendation before deleting
Of course, if you’re connected to your Pi via the network you want to remove, you’ll be disconnected from the Pi as soon as your Pi forgets the network.
Therefore, I recommend adding a new network before deleting the other network—this makes it slightly easier to add your “new” network. If you need to, finding which network your Pi is connected to is easy.
How to Find the Current Raspberry Pi Wi-Fi Network Name (SSID)
Finding your Pi’s current network name is easy.
4 – Connect to a new network
Connecting to a new network is as simple as generating a new wpa_supplicant.conf file or by running the raspi-config
utility.