linux/dd: unify argument order (#23054)

This commit is contained in:
fkobi
2026-07-03 11:03:58 +07:00
committed by GitHub
parent b3c1ba4d50
commit d37862a783
+2 -2
View File
@@ -6,7 +6,7 @@
- Make a bootable USB drive from an isohybrid file (such as `archlinux-xxx.iso`) and show the progress:
`sudo dd if={{path/to/file.iso}} of={{/dev/usb_drive}} status=progress`
`sudo dd status=progress if={{path/to/file.iso}} of={{/dev/usb_drive}}`
- Clone a drive to another drive with 4 MiB block size and flush writes before the command terminates:
@@ -22,7 +22,7 @@
- Create a system backup, save it into an IMG file (can be restored later by swapping `if` and `of`), and show the progress:
`sudo dd if={{/dev/drive_device}} of={{path/to/file.img}} status=progress`
`sudo dd status=progress if={{/dev/drive_device}} of={{path/to/file.img}}`
- Check the progress of an ongoing `dd` operation (run this command from another shell):