Enjoy Slackware 15.0!
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision Last revision Both sides next revision | ||
howtos:hardware:arm:raspberrypi3_wap [2018/08/26 23:56 (UTC)] bifferos [Hardware Requirements] |
howtos:hardware:arm:raspberrypi3_wap [2018/08/28 20:07 (UTC)] bifferos [Introduction] |
||
---|---|---|---|
Line 5: | Line 5: | ||
This HOWTO shows you how to replace the WiFi element of your home network setup with a Raspberry Pi running Slackware. | This HOWTO shows you how to replace the WiFi element of your home network setup with a Raspberry Pi running Slackware. | ||
+ | Although I've tested this HOWTO on a RPi 3, I've since tried it on an RPi2 as well and it works just as well. Interface wlan1 will obviously change to wlan0 because the Pi2 has no on-board WiFi. | ||
===== Hardware Requirements ===== | ===== Hardware Requirements ===== | ||
Line 44: | Line 45: | ||
===== Adapter detection ===== | ===== Adapter detection ===== | ||
+ | |||
+ | < | ||
+ | I advise to not connect and disconnect the hub from the Pi while it's running. | ||
+ | </ | ||
Ensure that iwconfig shows two adapters wlan0 and wlan1. | Ensure that iwconfig shows two adapters wlan0 and wlan1. | ||
Line 127: | Line 132: | ||
< | < | ||
+ | ===== QR Codes ===== | ||
+ | |||
+ | {{ howtos: | ||
+ | |||
+ | No home WiFi network setup is complete without a QR code that you can wave at all your mates when they are round your house wanting to connect. | ||
+ | |||
+ | Type the following to create a PNG file with the code, which you can print, copy to your mobile, put on a local webpage or whatever. | ||
+ | |||
+ | < | ||
+ | |||
+ | The above assumes WPA2, MYSSID should be replaced with your SSID, MYPASSWD replaced with your password. | ||
+ | |||
+ | At a pinch, the following bash script should pull your SSID and passphrase out of the hostapd.conf file, and automatically use them to create a new QR code, so you can quickly keep it up to date after any changes. | ||
+ | |||
+ | < | ||
+ | |||
+ | SSID=$(cat / | ||
+ | PASS=$(cat / | ||
+ | |||
+ | qrencode -t PNG -o hostapd.png " | ||
+ | |||
+ | |||
===== Conclusion ===== | ===== Conclusion ===== | ||