Merge pull request #851 from mstruebing/master

dd.md: add status=progress argument
waldyrious/alt-syntax
Igor Shubovych 2016-04-18 11:52:55 +03:00
commit 1d24e09063
1 changed files with 4 additions and 4 deletions

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: