Skip to content

Commit 3c9a032

Browse files
committed
Fix to
1 parent 64c3356 commit 3c9a032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linux/filesystem/backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ sudo dd bs=4M if=/dev/sdb | gzip > rasbian.img.gz
6767
To restore, pipe the output of `gunzip` to `dd`:
6868

6969
```bash
70-
sudo gunzip --stdout rasbian.img.gz | dd bs=4M of=/dev/sdb
70+
gunzip --stdout rasbian.img.gz | sudo dd bs=4M of=/dev/sdb
7171
```
7272

7373
See more about [installing SD card images](../../installation/installing-images/README.md).

0 commit comments

Comments
 (0)