Merge pull request #10 from mycognosist/master

Fix incorrect Debian image naming
This commit is contained in:
glyph 2020-11-13 07:48:07 +00:00 committed by GitHub
commit d46e2fb889
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -12,12 +12,12 @@ Note: Be sure to use the correct device location in the `dd` command, otherwise
```bash
wget https://raspi.debian.net/verified/20200831_raspi_3.img.xz
xzcat 20190628_raspberry-pi-3_buster_PREVIEW.img.xz | sudo dd of=/dev/mmcblk0 bs=64k oflag=dsync status=progress
xzcat 20200831_raspi_3.img.xz | sudo dd of=/dev/mmcblk0 bs=64k oflag=dsync status=progress
```
On Mac OS, use the following command to flash the SD card:
`xzcat 20190628_raspberry-pi-3_buster_PREVIEW.img.xz | sudo dd of=/dev/sdcarddisc`
`xzcat 20200831_raspi_3.img.xz | sudo dd of=/dev/sdcarddisc`
Alternatively, use [Etcher](https://www.balena.io/etcher/).