1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 13:06:00 +02:00

dd: add backup commands (#6047)

This commit is contained in:
CleanMachine1 2021-06-05 20:53:27 +01:00 committed by GitHub
parent 497cc059ec
commit 8200d3cb8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,14 @@
`dd if=/dev/zero of={{file_1GB}} bs=1024 count=1000000`
- Generate a system backup into an IMG file and show the progress:
`dd if=/dev/{{drive_device}} of={{path/to/file.img}} status=progress`
- Restore a drive from an IMG file and show the progress:
`dd if={{path/to/file.img}} of=/dev/{{drive_device}} status=progress`
- Check progress of an ongoing dd operation (Run this command from another shell):
`kill -USR1 $(pgrep ^dd)`