Raspbian
This OS need to be installed on a raspbery.
Download
Installation on SD Card
unzip raspbian.zip
dd bs=4M if=raspbian.img of=/dev/sdcard
See progress:
pkill -USR1 -n -x dd
Notice:
-
Be sure the device is unmout (df -h)
-
Be carefull that of=/dev/sdcard is not a system partition, it will be erased
Verify that buffered (all data in memory which was on memory is on SD Card)
sync
Disconnect and plug on raspberry. It's done.
Resolve issue "full space" on SD Card
raspi-config
And select option 1 : Expand Filesystem
wifi
# mount first partition (boot)
mount /dev/sdX1 /media/raspbian
/media/raspbianwpa_supplicant.conf:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=FR
network={
ssid="Livebox-xxxx"
psk="wifi_password"
}
umount /media raspbian
enable ssh
# mount first partition (boot)
mount /dev/sdX1 /media/raspbian
# just create ssh file at the root
touch /media/raspbian/ssh
umount /media raspbian