Last active
October 3, 2019 13:38
-
-
Save robmckinnon/f796a7bd3ee44e3b0f4a72b2af4473b1 to your computer and use it in GitHub Desktop.
raspberry pi buster setup
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
| cp wpa_supplicant.conf /Volumes/boot/ | |
| touch ssh | |
| cp ssh /Volumes/boot | |
| ssh [email protected] | |
| # raspberry | |
| passwd | |
| # new p/w | |
| exit | |
| ssh [email protected] | |
| sudo raspi-config | |
| # 2 Network Options | |
| # Hostname | |
| # new hostname | |
| # enter | |
| # finish | |
| exit | |
| ssh [email protected] | |
| 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