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

What is the different between UNIX command and UNIX shell script?

2 Answers  


What is the significance of the 'tee' command?

0 Answers  


What is FIND, GREP and SED ? Could you please give me the difference between all the three? Where we use this commnands?

6 Answers   Deloitte, Polaris,


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

0 Answers  


What are awk commands?

0 Answers  






What is the use of finger command?

0 Answers  


How do you remove a crontab file?

6 Answers  


Through which command will redirect output to bOth screen and files at the same time?

3 Answers  


Can a process kill itself in UNIX/or in its various versions?

2 Answers  


How do I use grep to find a file?

0 Answers  


Why is shebang used?

0 Answers  


Describe the zip/unzip command using gzip.

0 Answers  


Categories