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 command to compare two files in unix?

0 Answers  


Which Command is Used for temprary switch User?

5 Answers   BitWise, IBM,


Explain command to show the space allocation of files?

0 Answers  


How does a user get the current date, time in UNIX?

6 Answers   IBM,


What does grep v do?

0 Answers  






what is the advaantage of each user having its own copy of the shell?

0 Answers   BMC, CNS, DELL, Infosys,


What does find command return in unix?

0 Answers  


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

2 Answers  


How to open a Database using Unix Command Please Do Reply

9 Answers   Cognizant, CTS,


how to find the 51th record of a file containing 100 records in unix.

12 Answers   IBM,


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

0 Answers  


The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above

4 Answers   IBM,


Categories