Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 1978  / 2 Years ago, wed, april 20, 2022, 1:49:15

I am running a automatic incremental backup in network, at that time if thunderbird is running on client computer then backup is not completed that's why i need to know if there is any command to block a process for certain time for example thunderbird etc.


More From » 13.04

 Answers
3

You can send the SIGSTOP signal to any process and that process will stop execution, this signal can't be ignored by the process. To send the signal by PID of the process run:



kill -STOP THE_PID_OF_THUNDERBIRD


To send the signal to every process running a specified command, e.g. thunderbird, use this :



killall -STOP thunderbird


To allow the process to continue execution just send the process the SIGCONT signal:



kill -CONT THE_PID_OF_THUNDERBIRD


or



killall -CONT thunderbird

[#27858] Wednesday, April 20, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
tudatchful

Total Points: 270
Total Questions: 109
Total Answers: 122

Location: Palau
Member since Tue, May 30, 2023
1 Year ago
;