Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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 will be the output of ls ~/..

27 Answers   ABC,


What is ‘ps’ command for?

0 Answers  


Give the command for finding the current date.

0 Answers  


What is the use of touch command in there?

1 Answers   Accenture,


what are wild cards?

2 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 are the commands in UNIX to list the files in a Directory?

0 Answers   CGI,


How do I delete files from command prompt?

0 Answers  


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

0 Answers  


describe the escaping sequence characteres in unix

1 Answers  


hw will u use awk in replacing cahrs and files

0 Answers  


What is the difference between cat command and more command?

0 Answers  


Categories