A simple Bash script for automated setup of a stock MINIBIAN installation.
cd /tmp
wget --content-disposition http://git.io/vBRfm
sh minibian-setup.sh "MY-WLAN-SSID" "MY-WLAN-PASSPHRASE"If your wlan0 is not working after rebooting, you're probably missing kernel
firmware for your wireless network adapter.
Just check dmesg for entries looking like:
r8188eu 1-1.5:1.0: Firmware rtlwifi/rtl8188eufw.bin not available
and use apt-file to find the corresponding package containing this firmware:
apt-file update
apt-file find rtl8188eufw.binwhich will result in:
firmware-realtek: /lib/firmware/rtlwifi/rtl8188eufw.binand then install the required package:
apt-get -y install firmware-realtekNow unplug and reinsert the wireless adapter or reboot.