How to monitor user and group activity in Linux
Comprehensive explanation of how to monitor user and group activity in Linux using the tools and utilities mentioned Below:
ps command:
The "ps" command (short for process status) displays a snapshot of running processes on a Linux system. To view the processes running under a specific user, you can use the "-u" option followed by the username. For example, to see all the processes running under the user "john," you can use the following command:
ps -u john
This will display a list of all the processes running under the user "john" along with their process ID (PID), CPU usage, memory usage, and other relevant information.
Read more »Labels: linux administration, linux tutorial, user management