mcavic

msg:3838263 | 3:54 pm on Jan 30, 2009 (gmt 0) |
Do you mean disconnect their ssh session? You need to find what tty they're on (using the w command), then find the process id of their shell like this: ps ax ¦ grep pts/1 Then as root, kill -9 the process id.
|
eeek

msg:3877415 | 4:41 am on Mar 24, 2009 (gmt 0) |
Be nice and try kill -1 before nuking it, please.
|
graeme_p

msg:3877550 | 11:18 am on Mar 24, 2009 (gmt 0) |
killall -u username or pkill -u username pkill lets you specify the signal the same way as kill (-9 for example) whereas killall uses a -s or --signal switch.
|
|