From 4c4f5d59df0697a7ae9bd618af7873e0e9a1b8cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Str=C3=BCbing?= Date: Sat, 16 Apr 2016 21:43:30 +0200 Subject: [PATCH] dd.md: add status=progress argument --- pages/linux/dd.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/dd.md b/pages/linux/dd.md index 313054b5be..49dff8443a 100644 --- a/pages/linux/dd.md +++ b/pages/linux/dd.md @@ -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: