mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
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:
commit
29c04daffb
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
```
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue