b5e34360a7
- Initially tested on Raspberry Pi 4B & Raspberry Pi 3B - Create user + password, enable SSH, connect to local network - Implemented modules: audio-recorder, gps-recorder, real-time-clock, shutdown-button - Deployment option with deploy-rs Signed-off-by: Satu Koskinen <satu.a.koskinen@gmail.com>
9 lines
142 B
Bash
9 lines
142 B
Bash
# Flash image to sd-card
|
|
#
|
|
# Check sd-card device name with lsblk
|
|
|
|
SDCARD=$1
|
|
IMAGE=$2
|
|
|
|
sudo dd if=${IMAGE} of=/dev/${SDCARD} status=progress
|