lhunath 1260604010 learn Do NOT use kill -9! Read http://stackoverflow.com/questions/690415/in-what-order-should-i-send-signals-to-gracefully-shutdown-processes/690631#690631 SiegeX 1260604844 forget SiegeX 1260604846 learn Do NOT use kill -9! Read http://stackoverflow.com/questions/690415#690631 lhunath 1297934032 forget lhunath 1297934056 learn Do NOT use kill -9 (SIGKILL)! Go read http://stackoverflow.com/questions/690415#690631 geirha 1339700619 forget geirha 1339700627 learn #redirect kill-9 lhunath 1384960368 forget lhunath 1384960490 learn Do NOT use SIGKILL (kill -9) to terminate processes. All processes will terminate in response to the default SIGTERM. If they don't terminate instantly, that's because they're busy cleaning up. If you interrupt them, you break them. See http://stackoverflow.com/a/690631/347411 Riviera 1458331279 forget Riviera 1458331281 learn Do NOT use SIGKILL (kill -9) to terminate processes. All processes will terminate in response to the default SIGTERM. If they don't terminate instantly, that's because they're busy cleaning up. If you interrupt them, you break them. See http://stackoverflow.com/a/690631/347411 and http://turnoff.us/geek/dont-sigkill/