Skip to content

Instantly share code, notes, and snippets.

@devNoiseConsulting
Last active February 12, 2018 21:06
Show Gist options
  • Select an option

  • Save devNoiseConsulting/4e97be9aedc0ca0c5509dd891014f285 to your computer and use it in GitHub Desktop.

Select an option

Save devNoiseConsulting/4e97be9aedc0ca0c5509dd891014f285 to your computer and use it in GitHub Desktop.
My Notes on setting up a Raspberry Pi

Raspberry Pi notes

Write img to SD card (OS X)

diskutil list
sudo dd bs=1m if=2017-11-29-raspbian-stretch-lite.img of=/dev/disk2 conv=sync

Enable SSH

sudo systemctl enable ssh
sudo systemctl start ssh

Update and install software

sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install omxplayer

Partitioning SD Card

Adding a FAT32 partition to Raspbian on a Rasperry Pi

sudo apt-get install dosfstools
sudo fdisk -l
sudo cfdisk /dev/mmcblk0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment