Propagate to english page

This commit is contained in:
Alexandre Aubin 2019-08-02 16:03:40 +02:00 committed by GitHub
parent cfb85ae693
commit c051de5ba2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -156,3 +156,8 @@ dd if=/dev/mmcblk0 of=./backup.img status=progress
```
(replace `/dev/mmcblk0` with the actual device of your sd card)
You can also create a compressed image using gzip this way:
```bash
dd if=/dev/mmcblk0 | gzip > ./image.gz
```