分页: 1 / 1

HP-UX下查看在线用户并踢掉指定用户的命令

发表于 : 2012年 4月 23日 15:18 星期一
爱老虎油
HP-UX下查看在线用户并踢掉制定用户的命令

who -u查看其它用户的ip地址及shell进程号。
kill -9 shell进程号

kill -9 参数的含义
signum signame Name Description
___________________________________________________________________________
0 SIGNULL Null Check access to pid
1 SIGHUP Hangup Terminate; can be trapped
2 SIGINT Interrupt Terminate; can be trapped
3 SIGQUIT Quit Terminate with core dump; can be trapped
9 SIGKILL Kill Forced termination; cannot be trapped
15 SIGTERM Terminate Terminate; can be trapped
24 SIGSTOP Stop Pause the process; cannot be trapped
25 SIGTSTP Terminal stop Pause the process; can be trapped
26 SIGCONT Continue Run a stopped process