From charlesreid1

Revision as of 22:11, 15 July 2020 by Unknown user (talk) (Created page with "Wipe the SD cards Set up wpa supplicant config file Install a custom wpa supplicant startup service based on the one provided <pre> sudo cp /lib/systemd/system/wpa_supplica...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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