Created
May 30, 2013 07:06
-
-
Save jlyon/5676181 to your computer and use it in GitHub Desktop.
Getting started with Raspberry Pi's OS, Raspian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# blog post: http://blog.jonathanberi.com/ | |
# load raspberry pi gui | |
startx | |
# shutdown | |
sudo shutdown -h now | |
# ip is usually 192.168.1.12 | |
# ip at work is | |
# wifi: 192.168.1.16 | |
# ssh [email protected] | |
# get the ip of pi (look for debian) | |
nmap -sV -p 22 192.168.1.1-255 | |
# setup port forwarding on router: | |
# go to 71.198.72.171:3000 | |
# start vnc server | |
vncserver :1 -geometry 1024x600 -depth 16 -pixelformat rgb565 | |
#start vnc client | |
vncviewer 192.168.1.16:5901 | |
sudo raspi-config | |
# setup screenshare | |
http://mitchtech.net/vnc-setup-on-raspberry-pi-from-ubuntu/ | |
# setting up webcam (motion) | |
http://www.techspect.co.uk/?p=42 | |
http://roussell.net/blog/using-motion-on-ubuntu-10-04/ | |
# gps | |
http://www.adafruit.com/blog/2013/01/24/adafruit-ultimate-gps-on-the-raspberry-pi-raspberry_pi-raspberrypi/ | |
# install webcam | |
http://www.raspberrypi.org/phpBB3/viewtopic.php?p=164539 | |
by CrystalCowboy » Sun Sep 02, 2012 8:02 pm (in middle) | |
# install hemicontrol for everything | |
http://ni-c.github.io/heimcontrol.js/get-started.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment