I was surprised with this comment in other question:
Sending dd the USR1 signal too soon after it has started (i.e. in a bash script, the line after you started it) will in fact terminate it
Can anybody explain why?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Each signal has a “default disposition” — what a process does by default when it receives that signal. There’s a table in the signal(7) man page listing them:
Signal Value Action Comment ────────────────────────────────────────────────────────────────────── ... SIGUSR1 30,10,16 Term User-defined signal 1 SIGUSR2 31,12,17 Term User-defined signal 2
SIGUSR1 and SIGUSR2 both have the default action Term — the process is terminated. dd registers a handler to intercept the signal and do something useful with it, but if you signal too quickly it hasn’t had time to register that handler yet, so the default action happens instead
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0