How to Kill a List of Processes at Once in Linux
A short command that allows to terminate all the processes by their name
A short command that allows to terminate all the processes by their name
Sometimes server load is caused by a single user, that runs lots of stuff. In order to prevent server overload you should detect most heavy processes by using ps. Then you may need to know what processes are run by this user. This will be done using ps -u <username>. If you think that al user processes should… Read More »