http://docs.cubieboard.org/tutorials/common/begining_on_lubuntu
http://docs.cubieboard.org/tutorials/common/lubuntu_wifi_configuration
1)
#apt-get install vim
2)
Load module
#modprobe bcmdhd
or
#vim /etc/modules
bcmdhd
3)
#apt-get install linux-firmware
4)
#reboot
5)
Up the wlan0 interface
#ifconfig wlan0 up
6)
Scan and find info of all available wifi networks in your area
#iwlist wlan0 scan
7)
Set SSID and Passwod of selected wifi network
#wpa_passphrase your_wifi_name_or_ssid your_wifi_password >> /etc/wpa_supplicant.conf
8)
Network Interface configuration for wlan0
#vim /etc/network/interfaces
auto lo etho
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant.conf
9)
#vim /etc/resolv.conf
nameserver 192.168.0.1
10)
Restart the network or Reboot the system
#service networking restart
or
#reboot
No comments:
Post a Comment