- insert SD card into laptop / desktop
- from laptop:
./001_setup_sd_card --disk-num <disk_num> --disk-image <disk_img> --wifi-network-name <network> --wifi-password <password>
- insert SD card into raspberry pi; boot raspberry pi
- from laptop:
./002_provision_pi -i <SSH_KEY_TO_AUTHORIZE> -j <SSH_KEY_TO_ADD> -h <NEW_HOSTNAME> -p <NEW_PASSWORD> -e <GIT_USER_EMAIL> -u <GIT_USER_NAME>
% sudo ./001_setup_sd_card -h
usage: 001_setup_sd_card [-h] --disk-num DISK_NUM --disk-image DISK_IMAGE [--device-path DEVICE_PATH] --wifi-network-name WIFI_NETWORK_NAME --wifi-password WIFI_PASSWORD
[--wifi-country-code WIFI_COUNTRY_CODE]
setup new sd card for raspberry pi. Images disk, sets up wifi, sets up ssh. Run from laptop.
optional arguments:
-h, --help show this help message and exit
--disk-num DISK_NUM Disk number via `diskutil list`. This disk will be overwritten, so don't get this wrong.
--disk-image DISK_IMAGE
Path to disk image. Download Raspberry Pi OS Lite image from https://www.raspberrypi.org/software/operating-systems/
--device-path DEVICE_PATH
Mounted volume path after SD card has been imaged. Default: /Volumes/boot
--wifi-network-name WIFI_NETWORK_NAME
Name of the network to join
--wifi-password WIFI_PASSWORD
Password of the network to join
--wifi-country-code WIFI_COUNTRY_CODE
Your ISO-3166-1 two-letter country code. Default: US. See: https://www.iso.org/obp/ui/#search
% ./002_provision_pi -h
Usage: 002_provision_pi [-i <SSH_KEY_TO_AUTHORIZE>] [-j <SSH_KEY_TO_ADD>] [-h <NEW_HOSTNAME>] [-g <OLD_HOSTNAME] [-p <NEW_PASSWORD] [-o <OLD_PASSWORD] [-s]
Run this from laptop.
-i SSH_KEY_TO_AUTHORIZE : path to ssh key to add to authorized_keys for passwordless login on raspberry pi
Defaults to: /Users/davidleibovic/.ssh/id_ed25519.pub
-j SSH_KEY_TO_ADD : path to ssh key to copy to ~/.ssh on the raspberry pi. If you specify the public
key path, the corresponding private key will also be copied and vice versa.
Defaults to: /Users/davidleibovic/standard_raspberry_pi_key/id_ed25519.pub
-h NEW_HOSTNAME : Change the raspberry pi's hostname. Defaults to raspberrypi.local.
-g OLD_HOSTNAME : Defaults to raspberrypi.local
-p NEW_PASSWORD : Change the raspberry pi's password. Defaults to raspberry
-o OLD_PASSWORD : Defaults to raspberry
-e GIT_USER_EMAIL : email address for git
-u GIT_USER_NAME : user name for git
-s : Enable SPI
- The
provision_pi
script will installrmate
/subl
. Your editor may also need a plugin to make use of this though: https://github.com/aurora/rmate#set-up-editor
- find its IP:
sudo arp-scan --interface=en0 --localnet
orsudo nmap -sS -p 22 192.168.1.0/24