raspberry pi bake-off

17

Upload: david-j-hinson

Post on 13-Jan-2015

758 views

Category:

Technology


1 download

DESCRIPTION

If you've ever wondered what's so amazing about these little $35 computers, then wonder no more! The Raspberry Pi Bake-Off is your chance to showcase your own Raspberry Pi projects and creations - for bragging rights, and for the chance to win a Raspberry Pi as a door prize! Table space and power will be provided. Guest WiFi is available. Follow us on Twitter: @BakePi For additional information, please contact Raspberry Pi Bake-Off Table space is limited, so get your tickets today!

TRANSCRIPT

Page 1: Raspberry Pi Bake-Off
Page 2: Raspberry Pi Bake-Off

Recipe for configuration

1. run “sudo raspi-config”

Page 3: Raspberry Pi Bake-Off

Recipe for root password

1.  run “sudo passwd root”

Page 4: Raspberry Pi Bake-Off

Recipe for updating software

1. run “sudo apt-get update”

2. run “sudo apt-get upgrade”

Page 5: Raspberry Pi Bake-Off

Recipe for google

chromium

1.  run “sudo apt-get install chromium-browser”

Page 6: Raspberry Pi Bake-Off

Recipe for adding user

with sudo privileges

1.  run “sudo adduser [username]”

2.  run “adduser [username] sudo”

Page 7: Raspberry Pi Bake-Off

Recipe for starting gui

1.  run “startx”

Page 8: Raspberry Pi Bake-Off

Recipe for os version

1.  run “cat /proc/version”

Page 9: Raspberry Pi Bake-Off

Recipe for cpu info

1.  run “cat /proc/cpuinfo”

Page 10: Raspberry Pi Bake-Off

Recipe for disk usage

1.  run “sudo df –a -k”

Page 11: Raspberry Pi Bake-Off

Recipe for network

interfaces

1.  run “cat /etc/network/interfaces”

Page 12: Raspberry Pi Bake-Off

Recipe for checking hostname

1.  run “hostname”

Page 13: Raspberry Pi Bake-Off

Recipe for visual calendar

1.  run “cal”

Page 14: Raspberry Pi Bake-Off

Recipe for Bonjour

1. sudo apt-get install netatalk

2. run “sudo apt-get install avahi-daemon”

3. Run “sudo nano /etc/avahi/services/afpd.service”

4. Enter the following: <?xml version="1.0" standalone='no'?> <!DOCTYPE service-group SYSTEM "avahi-service.dtd"> <service-group> <name replace-wildcards="yes">%h </name> <service> <type>_afpovertcp._tcp</type> <port>548</port> </service> </service-group>

5. Press ctrl and x to exit.

Page 15: Raspberry Pi Bake-Off
Page 16: Raspberry Pi Bake-Off
Page 17: Raspberry Pi Bake-Off

Recipe for safe shutdown

1. run “sudo halt”

- or -

2. sudo shutdown –r “now” (shutdown, with restart)

- or -

3. sudo shutdown –h “now” (shutdown, halt)