Thursday, July 17, 2008

SIGSTOP




What do you do if you want to suspend a process but your keybinding for suspend isn't working?


kill -SIGSTOP 29273


You can then resume it later with


kill -SIGCONT 29273


or on the terminal you started it from:


fg