mirror of https://github.com/cheat/cheat.git
[DD] Add some tricks for dd
This commit is contained in:
parent
1c79ab5ed6
commit
74c6c9b01b
|
@ -2,3 +2,13 @@
|
||||||
# Note: At the first iteration, we read 512 Bytes.
|
# Note: At the first iteration, we read 512 Bytes.
|
||||||
# Note: At the second iteration, we read 512 Bytes.
|
# Note: At the second iteration, we read 512 Bytes.
|
||||||
dd if=/dev/urandom of=/tmp/test.txt count=512 bs=2
|
dd if=/dev/urandom of=/tmp/test.txt count=512 bs=2
|
||||||
|
|
||||||
|
# Watch the progress of 'dd'
|
||||||
|
dd if=/dev/zero of=/dev/null bs=4KB &; export dd_pid=`pgrep '^dd'`; while [[ -d /proc/$dd_pid ]]; do kill -USR1 $dd_pid && sleep 1 && clear; done
|
||||||
|
|
||||||
|
# Watch the progress of 'dd' with `pv` and `dialog` (apt-get install pv dialog)
|
||||||
|
(pv -n /dev/zero | dd of=/dev/null bs=128M conv=notrunc,noerror) 2>&1 | dialog --gauge "Running dd command (cloning), please wait..." 10 70 0
|
||||||
|
|
||||||
|
# DD with "graphical" return
|
||||||
|
dcfldd if=/dev/zero of=/dev/null bs=500K
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue