Installazione Raspberry Pi

Da Caos per caso.
Versione del 16 mar 2018 alle 13:48 di imported>Giorgio (Created page with " cd /boot touch ssh # per abilitare SSH sudo raspi-config # per entrare nel tool di configurazione # Elenco delle schede SD montate sudo fdisk -l # Installazione scheda...")
(diff) ← Versione meno recente | Versione attuale (diff) | Versione più recente → (diff)
Jump to navigation Jump to search
cd /boot
touch ssh # per abilitare SSH
sudo raspi-config # per entrare nel tool di configurazione
# Elenco delle schede SD montate
sudo fdisk -l
# Installazione scheda SD
sudo dd bs=4M if=raspbian-stretch.img of=/dev/sdb status=progress conv=fsync
# Backup scheda SD
sudo dd bs=4M if=/dev/sdb of=image-`date +%Y%m%d`.img status=progress
# Create a smaller image of the SD...
sudo dd bs=4M status=progress if=/dev/sdb | gzip > image-`date +%Y%m%d`.gz
# ...and restore it
sudo gzip -dc image.gz | dd bs=4M of=/dev/sdb status=progress