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

From Klaus' wiki
Jump to: navigation, search
Line 1: Line 1:
It is rather easy to get internet over the USB interface cable.
+
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 [https://github.com/anujdeshpande/BBB-workshop instructions].
 
If you're running Linux you can follow these [https://github.com/anujdeshpande/BBB-workshop instructions].

Revision as of 12:56, 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).