pl,ease let me know how to make some user forcefull logout from the telnet session ??
is there i should need to write a script to do that , is so please help me to write it down
The [tt]pkill[/tt] command can terminate processes by userid, terminal, command, or a whole list of other criteria. Some examples...
Code:
# All processes owned by "someuser"
pkill -KILL -u someuser
# All processes associated with terminal pts/8
pkill -KILL -t pts/8
# All vi commands run by "someuser"
pkill -KILL -u username vi
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.