This will walk you through bringing the ethernet block up on the Edison.
Follow these steps after screen
'ing into your Edison from your host Linux machine, as described here (i.e., sudo screen /dev/ttyUSB0 115200
).
-
Login to the edison as
root
with passwordedison
. -
Verify that your Edison sees the
eth0
interface by doingifconfig -a
. Inscreen
, you can scroll by doing: Ctrl-a esc and then using the up/down arrow keys. -
Add the
eth0
interface to the/etc/network/interfaces
file:vi /etc/network/interfaces
And add this to the file:
auto eth0 iface eth0 inet dhcp
To enable DHCP on
eth0
. -
Bring up the Ethernet block with:
ifup eth0
. -
Run
ifconfig
again to get the IP address foreth0
. Use that IP address to SSH into your edison, without having to usescreen
.
Known Issue: For some reason, the Edison will not switch into USB Host mode after a warm reboot (i.e., after running reboot
). You must start cold by unplugging the Edison and turning it back on again. (For more info, see here)