[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Idle Person in Telnet



on 5/19/00 6:33 AM, Brian Curtis at admin@xxxxxxxxxxx wrote:

> Have a look at KU (KillUser)
> http://www.technotronic.com/issue/ku/
> 
> BC
> 
> 
> ----- Original Message -----
> From: "Mike Fritsch" <mfritsch@xxxxxxxxxxxx>
> Subject: [cobalt-users] Idle Person in Telnet
> 
> 
>> 
>> I have a user who sits idle in telnet, is there anyway I can log the user
>> off?
>> 
>> Thanks
>> Mike

You can always kill their process.

I.e.

ps -aux | grep username
 get the PID for the login process

kill -9 851
 where 851 is the PID.

But what do you care if somemone is idling on the server?  It doesn't take
up hardly any resources at all.  I tend to idle on several client's servers
over SSH so when I need to check something I don't have to login blah blah
and then execute my command.

-k