I'm having issues SSHing into a headless Raspberry Pi over the wireless network. I set up the fresh install properly with /boot/ssh
and wpa_supplicant.conf
, and I even modified etc/network/interface
on first boot to include
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
so that it would autoconnect. This works fine until I try to automount a USB drive by mapping the drive's UUID to the mount point usng fstab
. Only after I do this and reboot (sudo reboot
) does the wpa_supplicant service fail to execute. I suspect that the fstab
configuration (UUID=35E3-026E /media/backup vfat user,auto,fmask=0111,dmask=0000 0 0
) conflicts with the new /etc/network/interface
configuration somehow, but I am relatively new to working with raspberry pi, and am learning as I go. Any help resolving this issue, i.e. making it possible to connect automatically to the wireless network after configuring a USB interface to automount, would be greatly appreciated!