Hacker News new | ask | show | jobs
by ysangkok 4360 days ago
How do you fire that signal from the console ?
2 comments

  pkill -USR1 dd
You'll need to use ps to get the pid if you've got multiple dd instances running, and you'll of course need to run that as root if your dd instance is running as root.
By using

    kill -s <Signal> <Process ID>