RaspberryPi/July 2020
From charlesreid1
Wipe the SD cards
Set up wpa supplicant config file
Install a custom wpa supplicant startup service based on the one provided
sudo cp /lib/systemd/system/wpa_supplicant.service /etc/systemd/system/wpa_supplicant.service sudo vim /etc/systemd/system/wpa_supplicant.service
Change this line from this:
ExecStart=/sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
to this:
ExecStart=/sbin/wpa_supplicant -u -s -c /etc/wpa_supplicant/wpa_supplicant.conf -i wlan0
Also, remove the following line if it is present:
Alias=dbus-fi.w1.wpa_supplicant1.service # DELETE ME!
Enable it manually by doing this:
cd /media/charles/rootfs/etc/systemd/system/multi-user.target.wants ln -fs /etc/systemd/system/wpa_supplicant.service