User Tools

Site Tools


linux:backup-with-dd

This is an old revision of the document!


Backup with dd

sudo dd if=/dev/mmcblkX of=/path/to/image.img status=progress

Backup with gzip

sudo dd if=/dev/mmcblkX | gzip -c > /path/to/image.img.gz

Restore with dd

sudo dd if=/path/to/image.img of=/dev/mmcblkX status=progress

Restore with gzip

gunzip -c /path/to/image.img.gz | sudo dd of=/dev/mmcblkX
linux/backup-with-dd.1676908491.txt.gz · Last modified: 2023/02/20 16:54 by els

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki