Skip to content

Instantly share code, notes, and snippets.

@robmckinnon
Last active October 3, 2019 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robmckinnon/f796a7bd3ee44e3b0f4a72b2af4473b1 to your computer and use it in GitHub Desktop.
Save robmckinnon/f796a7bd3ee44e3b0f4a72b2af4473b1 to your computer and use it in GitHub Desktop.
raspberry pi buster setup
cp wpa_supplicant.conf /Volumes/boot/
touch ssh
cp ssh /Volumes/boot
ssh pi@raspberrypi.local
# raspberry
passwd
# new p/w
exit
ssh pi@raspberrypi.local
sudo raspi-config
# 2 Network Options
# Hostname
# new hostname
# enter
# finish
exit
ssh pi@new-hostname.local
sudo raspi-config
# 8 Update this tool
# Enter & finish
sudo apt-get update
sudo apt-get dist-upgrade
# further see: https://www.raspberrypi.org/documentation/configuration/security.md
sudo raspi-config
# 8 Update this tool
# 5 Interfacing Options
# enable VNC
# Enter
# 7 Advanced options
# Force audio 3.5mm jack
# Enter and finish
ssh-keygen
# add to VC access keys
sudo apt-get install npm # if required
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment