This is a short descrieption for setup a headless (without Monitor/Display) Raspberry Pi with Raspbian under Linux using the shell.
- First download a raspbian image from here and verify the sha256sum.
- Secondly write the image to an microSD-Card.
unzip RASPBIAN_IMAGE | sudo dd of=/dev/mmcblk0 bs=4M conf=fsync status=progress.- Replace
RASPBIAN_IMAGEwith the image that you downloaded before. - Replace
/dev/mmcblk0with your device name. bs=4Mmake it faster, but maybe it causes problems, if it does, skip it.
- Replace
conf=fsynccan also causes problems, if you skip it, don't forget to runsudo syncafter the command has finished.