I tried to follow some online tutorials to get my Pi to connect to a hidden network. I used the command:
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
Prompting this:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="insert_your_hidden_SSID_here"
scan_ssid=1
psk="insert_your_wifi_password_here"
key_mgmt=WPA-PSK
}
I ended up creating several wpa_supplicant.conf files as I was a bit confused initially what the process did.
I have several of these files and I don't need them anymore. I tried to delete them manually just to see what would happen and I got a permission denied warning. On top of that, I wasn't able to even connect to my hidden network, so I ended up making it visible and connecting to it that way. If anyone has suggestions as to how I can remove the config files, or if I should just leave them be, and how I could properly access hidden networks, I would greatly appreciate it.