Wifi Wireless Internet on the BeagleBone Black, "How To" Tutorial HD
A BeagleBone Black is connected to the internet via WiFi. Below is the code used in this video: 1) Update and Install the driver install (my hardware is linksys WUSB54GC): apt-get update && apt-get install firmware-ralink 2) Reboot: reboot 3) Edit file (yu can use nano): sudo nano /etc/network/interfaces 4) Must be added the next lines: auto lo iface lo inet loopback iface eth0 inet dhcp allow-hotplug wlan0 auto wlan0 iface wlan0 inet dhcp wpa-ssid "mi SSID" wpa-psk "mi password" 5) Restart network (to switch from wired to wireless): sudo /etc/init.d/networking restart 6) Look for your ip address: ifconfig 7) Test internet connection: ping www.google.com