You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
3.5 KiB

4 years ago
4 years ago
  1. * Issues to solve
  2. ** which version of beagles to buy
  3. - I prefer to use the beaglebone black wi-fi, if it is possible to connect them to Jade's internet
  4. - Otherwise the ethernet version is preferred to use with usb-internet sharing
  5. - Install in computer the PuTTY software and some bash option to use.
  6. * day-1: Introduction to the beagle-boards and basic applications
  7. ** Introduction to the beagle boards.
  8. *** Connection
  9. + Basic USB connection
  10. + Connect to a IP address
  11. + SSH connection
  12. ssh -X debian@192.168.7.2
  13. debian:temppwd
  14. *** Sharing the internet through usb
  15. *** Wi-Fi
  16. To connect to your Wireless network type the following command in the terminal window:
  17. #+begin_src
  18. $sudo connmanctl
  19. connmanctl> enable wifi
  20. Enabled wifi
  21. connmanctl> scan wifi
  22. Scan completed for wifi
  23. connmanctl> services
  24. wifi_506583d4fc5e_544e434150413937414239_managed_psk
  25. connmanctl> agent on
  26. Agent registered
  27. connmanctl> connect wifi_506583d4fc5e_544e434150413937414239_managed_psk
  28. Passphrase? xxxxxxxxxxx
  29. connected wifi_506583d4fc5e_544e434150413937414239_managed_psk
  30. connmanctl> quit
  31. $ping www.google.com
  32. #+end_src
  33. *** Basic File System Commands
  34. | Name | Command | options | example |
  35. |-------------------+---------+---------------------------------------+----------------------------------|
  36. | List files | ls | -a shows all | ls -la |
  37. | | | -l long format | |
  38. | | | -R recursive | |
  39. |-------------------+---------+---------------------------------------+----------------------------------|
  40. | Current directory | pwd | -P prints the physical location | pwd |
  41. |-------------------+---------+---------------------------------------+----------------------------------|
  42. | Change | cd | .. takes you up a level | cd /home/gmarx |
  43. | directory | | ~ takes you to home directory | cd ~ |
  44. |-------------------+---------+---------------------------------------+----------------------------------|
  45. | Make | mkdir | -p make parent directories as needed | mkdir -p test/example |
  46. | directory | | -v print a message for each directory | mkdir -p /test/example |
  47. | | | | *first example creates |
  48. | | | | folders inside the |
  49. | | | | current folder, other one |
  50. | | | | creates folder in root directory |
  51. |-------------------+---------+---------------------------------------+----------------------------------|
  52. | | | | |
  53. ** Beagle software
  54. ** Developing applications
  55. ** The linux file system and commands
  56. * day-2: Control versions and interfacing electronics
  57. ** git for control version2
  58. ** C and C++
  59. ** GPIO interfacing
  60. ** 4. Bone scripts
  61. ** UART communication
  62. * day-3: The internet of things
  63. ** A beagle board IoT sensor
  64. ** Sensor web server
  65. ** Linux cron scheduler
  66. ** QT rich user interface
  67. * day-4: The project
  68. ** project development