MiniBian and wifi (HOWTO & preconfigured image)
Posted: Wed Apr 29, 2015 5:14 pm
I've been using MiniBian for a while since its "raspbian without the bloat" and fits on a 512mb card:
https://minibianpi.wordpress.com/features/
but that was with ethernet, then came across some trouble getting wifi to work... so I thought I'd write up the steps below:
MiniBian is so minimal it doesn't have wifi drivers built in... so install some wifi drivers:
Test things are working by doing a scan for networks
Now we'll set it up to auto connect:
edit /etc/network/interfaces:
edit /etc/wpa_supplicant/wpa_supplicant.conf:
The above sets it to connect to any open wifi.
I made an image with this pre-setup for those in the Model A "no ethernet to configure wifi" catch22 situation:
https://sourceforge.net/projects/minibianwifi/
https://minibianpi.wordpress.com/features/
but that was with ethernet, then came across some trouble getting wifi to work... so I thought I'd write up the steps below:
MiniBian is so minimal it doesn't have wifi drivers built in... so install some wifi drivers:
Code: Select all
apt-get install firmware-ralink
apt-get install firmware-realtek
Code: Select all
apt-get install wireless-tools
iwlist wlan0 scan
Code: Select all
apt-get install wpasupplicant
edit /etc/network/interfaces:
Code: Select all
auto lo
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
edit /etc/wpa_supplicant/wpa_supplicant.conf:
Code: Select all
network={
key_mgmt=NONE
priority=-999
}
I made an image with this pre-setup for those in the Model A "no ethernet to configure wifi" catch22 situation:
https://sourceforge.net/projects/minibianwifi/