Tagged Questions
5
votes
1answer
200 views
Unkillable apache2 processes
After upgrading from debian lenny to squeeze (apache2 2.2.16-6+squeeze4 and php 5.3.10-1~dotdeb.1), my apache processes started to exit with segmentation fault. It happens every 5-30 minutes (for 1 ...
3
votes
1answer
313 views
Which processes should I NOT strace?
I've created a little function for strace'ing a set of the current user's processes by name:
function pstrace() {
local pattern="$1";
shift;
prefixDashP $(pgrep -U $(whoami) $pattern) | ...