Raspberrypi: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
Link [https://www.raspberrypi.org/documentation/installation/installing-images/linux.md linux command line] | Link [https://www.raspberrypi.org/documentation/installation/installing-images/linux.md linux command line] | ||
# Check the device name of the card and umount it | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
df -h | df -h | ||
umount /dev/sdX1 | umount /dev/sdX1 | ||
</syntaxhighlight> | |||
# Copy the image from the zip file on the card | |||
<syntaxhighlight lang="bash"> | |||
unzip -p 2017-02-16-raspbian-jessie.zip | sudo dd of=/dev/sdX bs=4096 status=progress | unzip -p 2017-02-16-raspbian-jessie.zip | sudo dd of=/dev/sdX bs=4096 status=progress | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 04:04, 26 March 2017
Download
Raspberry site Raspberry
Prepare the SD Card
Link linux command line
- Check the device name of the card and umount it
df -h
umount /dev/sdX1
- Copy the image from the zip file on the card
unzip -p 2017-02-16-raspbian-jessie.zip | sudo dd of=/dev/sdX bs=4096 status=progress