From cfb85ae69370b75672e4ecdb96ec13e2af0a4640 Mon Sep 17 00:00:00 2001 From: Yunobot Date: Thu, 18 Jul 2019 09:20:23 +0000 Subject: [PATCH 1/2] =?UTF-8?q?Cr=C3=A9ation=20de=20l'image=20d'un?= =?UTF-8?q?e=20carte=20SD=20compress=C3=A9e=20avec=20Gzip.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backup_fr.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backup_fr.md b/backup_fr.md index ec0c1d93..1b3e0bc2 100644 --- a/backup_fr.md +++ b/backup_fr.md @@ -159,3 +159,9 @@ dd if=/dev/mmcblk0 of=./backup.img status=progress ``` (remplacez `/dev/mmcblk0` par le vrai nom de votre carte SD) + +Vous pouvez aussi compresser l'image à l'aide de gzip : + +```bash +dd if=/dev/mmcblk0 | gzip > ./image.gz +``` From c051de5ba252c76294c45481cb7570b06f4c9ffe Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 2 Aug 2019 16:03:40 +0200 Subject: [PATCH 2/2] 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 +```