https://bugzilla.mindrot.org/show_bug.cgi?id=1917
--- Comment #7 from Damien Miller <[email protected]> 2011-09-24 14:00:18 EST --- gdb: 1. find the pid of the unresponsive ssh process using "ps auxww | grep ssh" 2. attach to it using gdb "gdb /path/to/ssh" then "attach PID" (using the pid you found in step (1). 3. Capture a backtrace "where". The others depend on which platform you are on. Generally it is a matter of running "strace -p PID" (or similar for the others). ktrace is a little different, because you need to start the trace (using ktrace) then dump the output using kdump later. Check the manpage for the tool for your system. -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug. You are watching someone on the CC list of the bug. _______________________________________________ openssh-bugs mailing list [email protected] https://lists.mindrot.org/mailman/listinfo/openssh-bugs
