From c051de5ba252c76294c45481cb7570b06f4c9ffe Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 2 Aug 2019 16:03:40 +0200 Subject: [PATCH] Propagate to english page --- backup.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backup.md b/backup.md index 819bd80f..0d068886 100644 --- a/backup.md +++ b/backup.md @@ -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 +```