Re: How to kill session

2002-11-04 Thread Bret Hughes
On Mon, 2002-11-04 at 06:36, Anthony E. Greene wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 04-Nov-2002/15:57 +0800, Roger <[EMAIL PROTECTED]> wrote: > >If I found somebody logon on my system from some teminals, such as pst/1, > >tt1 hwo can I teminate his session quickly? I

Re: How to kill session

2002-11-04 Thread Mike Burger
ps aux | grep kill -9 On Mon, 4 Nov 2002, Roger wrote: > Hi Dear all > > If I found somebody logon on my system from some teminals, such as pst/1, > tt1 hwo can I teminate his session quickly? I am runing RH 8.0 > > > Thanks! > > > > -- Mike Burger http://www.bubbanfriends.org Vi

Re: How to kill session

2002-11-04 Thread Anthony E. Greene
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04-Nov-2002/15:57 +0800, Roger <[EMAIL PROTECTED]> wrote: >If I found somebody logon on my system from some teminals, such as pst/1, >tt1 hwo can I teminate his session quickly? I am runing RH 8.0 Disconnect the network cable. Then shutdown and

Re: How to kill session

2002-11-04 Thread RH
ps -aux | grep pts, then kill -9 the appropriate process. RH - Original Message - From: "Roger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 04, 2002 2:57 AM Subject: How to kill session > Hi Dear all > > If I found somebody logon on my system from some teminals

RE: How to kill session

2002-11-04 Thread Eddie Strohmier
Roger: You could do a ps aux | grep pts/1 and see first the user and then the users process number and you could kill the process with a kill -9 x x being the process number that you found belonging to that bash login. That's the quickest way I can think of off the top of my head. Do thi