who's connected

neo36

UAAAARRRR!
how can you see who's connected to your system under 10.2? users who log in with ssh get listed when using the 'who' command, but for example ftp-users won't appear there.
 
I don't think the ftp daemon can list connected users. That would be a cool feature, though... You can always use the netstat command to get a listing of connected sockets, but it's a little messy.
 
I think you can do a ps -axw | grep ftp

maybe even ps -axw | grep ftp | grep user

At least it works on my freebsd box :p

oh and this is from a terminal
 
Back
Top