How do you know about running processes of a particular
user?

Answers were Sorted based on User's Feedback



How do you know about running processes of a particular user?..

Answer / jsdkar

ps -u <uid>

Is This Answer Correct ?    14 Yes 0 No

How do you know about running processes of a particular user?..

Answer / lipsa naik

ps -ef | grep <user>

Is This Answer Correct ?    11 Yes 0 No

How do you know about running processes of a particular user?..

Answer / booger

ps -fu <user>

Is This Answer Correct ?    6 Yes 1 No

How do you know about running processes of a particular user?..

Answer / sujay kumar

ps -U username

ps U username

Is This Answer Correct ?    6 Yes 1 No

How do you know about running processes of a particular user?..

Answer / lekshmanan s

ps -ef|grep $(whoami)
$(whoami) gives the username and that is grep(ed or
searched) in ps -ef

Is This Answer Correct ?    4 Yes 1 No

How do you know about running processes of a particular user?..

Answer / hanumantha rao m

ps -aef

Is This Answer Correct ?    3 Yes 0 No

How do you know about running processes of a particular user?..

Answer / punit sharma

ps -u <username> can provide the processes running for the
user.

ps -fu <username> can provide the full listing of the
processes running for the user

Is This Answer Correct ?    1 Yes 1 No

How do you know about running processes of a particular user?..

Answer / bhaskar

watch "ps -aef|grep "driver.pl""

Is This Answer Correct ?    0 Yes 0 No

How do you know about running processes of a particular user?..

Answer / manikandant

ps u | grep <User>

Is This Answer Correct ?    0 Yes 2 No

How do you know about running processes of a particular user?..

Answer / sakthi

ps -ef

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Unix Commands Interview Questions

What is merge command in unix?

1 Answers  


their is a file1,file2 and i want to append file1 data to file2?

9 Answers   IBM,


What does sed command do in unix?

1 Answers  


in UNIX,what is the command to remove directory with files?

10 Answers  


What difference between cmp and diff commands?

1 Answers  


How to delete a directory containing files and folders?

3 Answers  


Can you write a command to erase all files in the current directory including all its sub-directories?

1 Answers  


what is the use of wild cards?

2 Answers  


What are filter commands in unix?

1 Answers  


what is ls -ltd?

5 Answers   HCL,


What are the differences among a system call, a library function, and a unix command?

1 Answers  


How do you copy a directory with many files and folders into another directory?

2 Answers  


Categories