I want to find the password for the wireless network that I am currently connected to (and I entered the password when connecting to the network). How can I do this in Ubuntu?
9 Answers
If you want to do this with the command line, the wireless network configuration files are saved in the /etc/NetworkManager/system-connections/ directory. You can get them all at once like this:
sudo grep -r '^psk=' /etc/NetworkManager/system-connections/
This will give you output like this:
/etc/NetworkManager/system-connections/MyExampleSSID:psk=12345
/etc/NetworkManager/system-connections/AnotherSSID:psk=password
You can suppress the filename with the -h flag:
sudo grep -hr '^psk=' /etc/NetworkManager/system-connections/
The output is easier to read at a glance:
psk=12345
psk=password
Open a terminal (press Ctrl+Alt+T), then type:
sudo cat /etc/NetworkManager/system-connections/<your-SSID>
(Of course, substitute <your-SSID> with your network's name.)
Look for the line named psk. This should contain your password, after the = sign.
psk=notreallymypassword
- 119,640
- 34,802
here is a one liner to make @David Foerster answer more useful
MYCWD=`pwd`; cd /etc/NetworkManager/system-connections/ ; sudo grep -e '^psk=' * | less ; cd $MYCWD
- 166
Using nmcli on Ubuntu 18.04, replace WIFINAME with the wireless network name (ssid):
nmcli --show-secrets connection show WIFINAME | grep 802-11-wireless-security.psk:
show-password does not work for me
you can just type ls /etc/NetworkManager/system-connections/
and it will show the name of your network, so just press the up arrow on keyboard and type the name of your connections and change ls to sudo cat
the password will be psk
- 111
Going further with MRTgang second command to remove "psk=" leaving only the password
sudo grep -hr '^psk=' /etc/NetworkManager/system-connections/ | sed 's|psk=||g'
- 31

