You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your code your looking at the last line in /proc/cpuinfo this has changed in buster use the below instead:
subprocess.getoutput("cat /proc/cpuinfo | grep Serial | awk '{print $3}'")[-4:]
Previous versions worked fine for me, I've been using it for over a year with Raspian Lite Stretch
Using Buster Lite - fresh install and the last 4 of the serial in hostapd.conf are incorrect
below is what it shows:
ssid should be "RaspiWifi c873"
pi@raspberrypi:~ $ cat /proc/cpuinfo | grep Serial | awk '{print $3}'
00000000321ec873
In your code your looking at the last line in /proc/cpuinfo this has changed in buster use the below instead:
subprocess.getoutput("cat /proc/cpuinfo | grep Serial | awk '{print $3}'")[-4:]
cat /etc/hostapd/hostapd.conf
interface=wlan0
driver=nl80211
ssid=RaspiWifi 1.2 <--incorrect
channel=1
auth_algs=1
wpa=2
wpa_key_mgmt=WPA-PSK
rsn_pairwise=CCMP
wpa_passphrase=getmeyellow
The text was updated successfully, but these errors were encountered: