dd.md: add status=progress argument

This commit is contained in:
Max Strübing 2016-04-16 21:43:30 +02:00
parent 44fe0eb3e2
commit 4c4f5d59df

View File

@ -2,13 +2,13 @@
> Convert and copy a file.
- Make a bootable usb drive from an isohybrid file (such like archlinux-xxx.iso):
- Make a bootable usb drive from an isohybrid file (such like archlinux-xxx.iso) and show the progress:
`dd if={{file.iso}} of=/dev/{{usb_drive}}`
`dd if={{file.iso}} of=/dev/{{usb_drive}} status=progress`
- Clone a drive to another drive with 4MB block and ignore error:
- Clone a drive to another drive with 4MB block, ignore error and show progress:
`dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs=4M conv=noerror`
`dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs=4M conv=noerror status=progress`
- Generate a file of 100 random bytes by using kernel random driver: