in UNIX,How do you check for processes started by
particular user suppose the user name is 'suresh'?

Answers were Sorted based on User's Feedback



in UNIX,How do you check for processes started by particular user suppose the user name is 's..

Answer / dharchana

ps -u suresh

Is This Answer Correct ?    15 Yes 0 No

in UNIX,How do you check for processes started by particular user suppose the user name is 's..

Answer / raghava

ps -ef | grep 'suresh'

Is This Answer Correct ?    8 Yes 1 No

in UNIX,How do you check for processes started by particular user suppose the user name is 's..

Answer / subbareddy kake

up to now all answers correct.I saw result of all commands.

Is This Answer Correct ?    3 Yes 0 No

in UNIX,How do you check for processes started by particular user suppose the user name is 's..

Answer / suitable

ps aux | grep username

Is This Answer Correct ?    2 Yes 2 No

in UNIX,How do you check for processes started by particular user suppose the user name is 's..

Answer / abhijit (pune)

ps -fu username | grep -i processname
and
ps -ef | grep user | grep processname

Is This Answer Correct ?    0 Yes 0 No

in UNIX,How do you check for processes started by particular user suppose the user name is 's..

Answer / yuvaevergreen

ps -u option

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

How do you change file permissions and ownership in Unix?

2 Answers  


What is an Unix command to convert HEX value to ASCII value located in any flat file.

2 Answers  


What UNIX command will control the default file permissions when files are created?

4 Answers  


what is the use of uniq commmand?

8 Answers  


What does sed command do in unix?

0 Answers  






How can we "forked" process in UNIX? How then recognize in any of the branches we?

2 Answers   NIIT,


What is ‘ps’ command for?

0 Answers  


What do chmod command do?

0 Answers  


How do I use grep to search for a file?

0 Answers  


How do I open a port?

0 Answers  


Explain ‘system calls’ with respect to unix commands?

0 Answers  


What is "type" command in unix?what is the functionality??

2 Answers  


Categories