diff options
author | bnewbold <bnewbold@robocracy.org> | 2015-05-28 21:33:51 -0700 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2015-05-28 21:34:18 -0700 |
commit | c53de64e95120f9ea19bfc21c74f465ba80495a7 (patch) | |
tree | 29ba5568e26814548c9d6803ce3ab4eca4e6554a | |
parent | 7b5da5088f2c184c4f080629191c41fc4d0bf20d (diff) | |
download | novena-guide-c53de64e95120f9ea19bfc21c74f465ba80495a7.tar.gz novena-guide-c53de64e95120f9ea19bfc21c74f465ba80495a7.zip |
quickstart-board: screen permissions instructions
-rw-r--r-- | quickstart-board.rst | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/quickstart-board.rst b/quickstart-board.rst index ce00a87..e0cdb72 100644 --- a/quickstart-board.rst +++ b/quickstart-board.rst @@ -51,7 +51,20 @@ line program:: # Should be a blank screen until the Novena boots. # Type "Ctrl-A" then "k" to quit when you are done. -Or you could use minicom or GtkTerm or whatever your favorite is.. +Or you could use minicom or GtkTerm or whatever your favorite is. If you get +access errors, you might need to add yourself to ``dialout`` or ``plugdev`` or +a group like that, then completely log out and log back in:: + + $ ls -l /dev/ttyUSB0 + crw-rw---- 1 root dialout 188, 0 May 28 21:10 /dev/ttyUSB0 + $ groups + SOMEBODY cdrom floppy audio dip video plugdev netdev + $ sudo usermod SOMEBODY -a -G dialout + $ groups + SOMEBODY cdrom floppy audio dip video plugdev netdev + $ # Still need to logout and back in, then: + $ groups + SOMEBODY dialout cdrom floppy audio dip video plugdev netdev Finally, connect power to the Novena board's DC barrel jack. You should see u-boot and then kernel boot messages stream out the console. |