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 the difference between commmands cmp and diff?

9 Answers   iNautix,


Why is it called a shebang?

0 Answers  


When the shell is reading the command line what is the difference between text enclosed between double quotes ( ” ) and text enclosed between signal quotes ( ’ )?

3 Answers  


What does grep v do?

0 Answers  


Give the command to display space usage on the UNIX file system.

6 Answers  






What do chown command do?

0 Answers  


How to know a process is a zombie or orphan process?

3 Answers   Perot Systems,


How to see unused port number in Solaris?

2 Answers   HCL,


what does a process mean?

5 Answers   Infosys,


How to setup sudo, only can use for particular date & time only ( for solaris10 )

1 Answers   ups,


What is the comma to display different lines that are found when compare two files?

0 Answers  


What are file commands?

0 Answers  


Categories