Question about processes

2005-04-10 Thread David J. Weller-Fahy
How does one determine which process initiated any given network connection? Or which program (on disk) initiated the process that initiated the network connection? Been searching, but not finding. Regards, -- dave [ please don't CC me ] ___

Re: Question about processes

2005-04-10 Thread Danny Pansters
On Sunday 10 April 2005 23:13, David J. Weller-Fahy wrote: How does one determine which process initiated any given network connection? Or which program (on disk) initiated the process that initiated the network connection? Been searching, but not finding. Regards, sockstat will show you

Re: Question about processes

2005-04-10 Thread David Kelly
On Sun, Apr 10, 2005 at 11:13:40PM +0200, David J. Weller-Fahy wrote: How does one determine which process initiated any given network connection? Or which program (on disk) initiated the process that initiated the network connection? Been searching, but not finding. Read the man page for

Re: Question about processes

2005-04-10 Thread David J. Weller-Fahy
* Danny Pansters [EMAIL PROTECTED] [2005-04-10 23:26 +0200]: sockstat will show you all network and unix sockets and the processes and their PIDs. If you want to know more such as the full path or so (if used when invoked), you can run ps wwwaux and grep on the PID. That's exactly what I was