Answers for "how to check running process in linux for a user"

8

check running process in linux

ps -aux 
# (print all processes owned by a user named "x")
Posted by: Guest on May-02-2020
0

see what user a process is running as

ps -aux | grep <process>
Posted by: Guest on April-17-2021
0

user current process in linux

ps -u {your_username}
Posted by: Guest on April-09-2021

Code answers related to "how to check running process in linux for a user"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language