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/