1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 13:15:24 +02:00

dd: check dd progress with kill (#1867)

This commit is contained in:
Starbeamrainbowlabs 2018-01-16 10:00:30 +00:00 committed by GitHub
commit 8122f3bf4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,3 +17,7 @@
- Benchmark the write performance of a disk:
`dd if=/dev/zero of={{file_1GB}} bs=1024 count=1000000`
- Check progress of an ongoing dd operation (Run this command from another shell):
`kill -USR1 $(pgrep ^dd)`