Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
371 views1 page

Cheat Sheet Rpi PDF

This document provides a cheat sheet for getting started with a Raspberry Pi. It outlines the necessary hardware components, how to install an operating system like Raspbian by writing the image file to an SD card, initial login credentials for the OS, how to enable WiFi connectivity by editing configuration files, instructions for installing and removing software packages using the apt package manager, and resources for finding help.

Uploaded by

adsfasdfsdfsadf
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
371 views1 page

Cheat Sheet Rpi PDF

This document provides a cheat sheet for getting started with a Raspberry Pi. It outlines the necessary hardware components, how to install an operating system like Raspbian by writing the image file to an SD card, initial login credentials for the OS, how to enable WiFi connectivity by editing configuration files, instructions for installing and removing software packages using the apt package manager, and resources for finding help.

Uploaded by

adsfasdfsdfsadf
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Opensource.

com: Getting Started with Raspberry Pi Cheat Sheet BY BEN NUTTALL

What you will need


• Raspberry Pi • Micro SD card
• TV or monitor • Mouse
• Micro USB power supply • Keyboard
• HDMI cable

Install the operating system


• Download Raspbian or other OS from raspberrypi.org/downloads
• Use Etcher.io to write the image
• Or use dd on the command line:
• Use df -h to see your disk drives
• Identify your SD card (e.g., /dev/sdb)
• Unmount all its partitions: sudo umount /dev/sdb1 /dev/sdb2
• Write the image file to the whole drive: sudo dd bs=4M if=raspbian.img of=/dev/sdb status=progress
• Sync before removal: sudo sync
Raspbian
• Default username: pi
• Default password: raspberry
• SSH (secure shell) disabled by default
• Common settings in Raspberry Pi Configuration
• Or run sudo raspi-config
Tip: You can place an empty file ssh in the boot directory and SSH will be automatically enabled.
WiFi
• Use the GUI to select a network
• Or edit /etc/wpa_supplicant/wpa_supplicant.conf on the command line:
network={
ssid="network"
psk="password"
}
Tip: You can place wpa_supplicant.conf in the boot directory and it will be applied.
Installing software
• Update your package list: sudo apt update
• Upgrade all packages: sudo apt upgrade
• Install a new package: sudo apt install <package>
• Remove a package: sudo apt purge <package>
Where to get help
• raspberrypi.org
• raspberrypi.org/documentation
• projects.raspberrypi.org
• raspberrypi.org/forums
• raspberrypi.stackexchange.com
• raspberrypi.org/jam

opensource.com Twitter @opensourceway | facebook.com/opensourceway | CC BY-SA 4.0

You might also like