Y
Hacker News
new
|
ask
|
show
|
jobs
by
ysangkok
4360 days ago
How do you fire that signal from the console ?
2 comments
koenigdavidmj
4360 days ago
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.
link
spoiler
4360 days ago
By using
kill -s <Signal> <Process ID>
link