Hello, On Tue, May 29, 2001 at 03:05:52AM +0300, killah wrote: > how, can i see the tcp port 4350 that states to be opened useing nmap
As root, you can do:
fuser -v -n tcp 4350
and:
lsof -i tcp:4350
The lsof command, if it finds anything, will return a PID as part of it's
output, you can then see the files used by that process with:
lsof -p <PID>
Regards,
Robert

