On Thu, Mar 10, 2016 at 9:51 PM, Cornelius Lee <[email protected]> wrote: > William: > I am using Linux Mint in my host. > cornelius@cornelius /etc $ cat lsb-release > DISTRIB_ID=LinuxMint > DISTRIB_RELEASE=17.3 > DISTRIB_CODENAME=rosa > DISTRIB_DESCRIPTION="Linux Mint 17.3 Rosa" > > Robert: > cornelius@cornelius /etc $ journalctl|grep usb0 > journalctl: command not found > cornelius@cornelius /etc $ journalctl|grep -i dhcp > journalctl: command not found
Oh, so "journalctl" is how we access the log with a systemd system. By default, we setup a multi usb interface: usb flash, usb ethernet (which we are debuggin) and a usb serial gadget. So use "gtkterm" it's the easist gui program, and run: gtkterm -s 115200 -p /dev/ttyACM0 This will give you a serial interface into the bbb.. Next run: (inside the bbb) journalctl | grep usb0 journalctl | grep -i dhcp That'll tell us what "usb0" is doing and we will see why "udhcpd" isn't doing what it's suppost to.. Regards, -- Robert Nelson https://rcn-ee.com/ -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
