Difference between revisions of "BBB Internet over the USB cable"

From Klaus' wiki
Jump to: navigation, search
Line 18: Line 18:
 
</source>
 
</source>
  
At first login on the BBB execute this script as root (or use sudo).
+
At first login on the BBB execute this script as root (or use sudo). Or you may want to set this script up so it will be executed at boot time.

Revision as of 12:58, 16 February 2016

It is rather easy to get access to the whole internet over the USB interface cable provided that your laptop/PC has internet access.

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
grep -q 8.8.8.8 /etc/resolv.conf
if [ "$?" -ne "0" ]; then
        echo "nameserver 8.8.8.8" >> /etc/resolv.conf
fi
/usr/sbin/ntpdate -b -s -u dk.pool.ntp.org
echo "End of the settings script"

At first login on the BBB execute this script as root (or use sudo). Or you may want to set this script up so it will be executed at boot time.