Skip to content

Instantly share code, notes, and snippets.

@macton
Last active May 1, 2019 20:24
Show Gist options
  • Save macton/f0011f82df2b4537c9d745250aa68ef6 to your computer and use it in GitHub Desktop.
Save macton/f0011f82df2b4537c9d745250aa68ef6 to your computer and use it in GitHub Desktop.
Enabling SSH
https://learn.adafruit.com/adafruits-raspberry-pi-lesson-6-using-ssh/enabling-ssh
Connecting to WPA2-Enterprise Wifi Network
https://raspberrypi.stackexchange.com/a/24670
How to Mount an External Hard Drive on the Raspberry Pi
https://www.modmypi.com/blog/how-to-mount-an-external-hard-drive-on-the-raspberry-pi-raspian
(chroot) Install common stuff
$ sudo apt-get update
$ sudo apt-get install build-essential binutils elfutils git gperf subversion unzip zip nodejs clang dtach libgl1-mesa-dev x11proto-core-dev libx11-dev ntfs-3g
Config ssh keys for github See: https://help.github.com/articles/generating-ssh-keys
$ ssh-keygen -t rsa -C "your_email@youremail.com"
$ cat ~/.ssh/id_rsa.pub
Copy and paste to https://github.com/settings/ssh
Config git See: http://git-scm.com/book/en/Customizing-Git-Git-Configuration
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
$ git config --global push.default matching
$ git config --global url.ssh://git@github.com/.insteadOf https://github.com/
Follow-up
* https://rpiplayground.wordpress.com/2014/05/03/hacking-the-gpu-for-fun-and-profit-pt-1/
* https://petewarden.com/2014/08/07/how-to-optimize-raspberry-pi-code-using-its-gpu/
gencmd
* https://github.com/nezticle/RaspberryPi-BuildRoot/wiki/VideoCore-Tools\
dispmanx
* https://github.com/raspberrypi/userland/blob/master/interface/peer/vc_vchi_dispmanx_common.h
mouse
* http://blog.eihis.com/2014/06/26/linux-reading-the-mouse-events-datas/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment