BBB Internet over the USB cable

From Klaus' wiki
Revision as of 12:46, 16 February 2016 by Klaus (Talk | contribs)

Jump to: navigation, search

It is rather easy to get internet over the USB interface cable.

If you're running Linux you can follow these instructions.

If you're running Windows Derrek Molloy has some advices on this page.

On the BBB create this file and make it executable

#!/bin/bash
echo "Starting the Internet-over-USB script"
/sbin/route add default gw 192.168.7.1
echo "nameserver 8.8.8.8" >> /etc/resolv.conf
/usr/sbin/ntpdate -b -s -u dk.pool.ntp.org
echo "End of the settings script"