How do you know about running processes of a particular
user?
Answers were Sorted based on User's Feedback
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 |
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 to check whether some services are running in another server or not? Suppose i am currently in a server named A.I want to check whether some services are running in server B without logging into the server B.
3 Answers Amazon, MBA, Syntel, TCS, Unisys,
How do you find files in Unix?
How do I find previous commands in unix?
How do you copy a directory with many files and folders into another directory?
what is difference between unix and linux?
How does a user get the current date, time in UNIX?
What is the output of : $ ps-e $ ps-a commands
what is the use of uniq commmand?
What command a user use to view a long text file one page at a time in UNIX?
What is the general format of unix command syntax?
what is the command to print last 8 lines of any text file.
How can you create a symbolic link to a file or directory?