Merge pull request #1027 from yunohost-bot/anonymous-2019-06-27_07-12-44

[Anonymous contrib] Création de l'image d'une carte SD compressée avec Gzip.
This commit is contained in:
Alexandre Aubin 2019-08-02 16:03:53 +02:00 committed by GitHub
commit 29c04daffb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

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
```

View file

@ -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
```