![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| script to monitor process running on server and posting a mail if any process is dead | pradeepmacha | Shell Programming and Scripting | 12 | 10-17-2008 12:08 AM |
| sed to fix view names | capri_drm | Linux | 6 | 05-15-2008 04:00 PM |
| How to view my IP | blowFish@ubuntu | UNIX for Dummies Questions & Answers | 14 | 05-09-2008 06:35 AM |
| multiuser chat server closes when one client closes. code included | dooker | High Level Programming | 0 | 01-06-2004 09:02 AM |
| DBM View | schafferm | UNIX for Dummies Questions & Answers | 1 | 08-06-2002 01:18 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
how to view my own process in a multiuser envrionment
Hi ,
I am new to unix , tell me how can I check which all are the processes which were started by me or under my account , its a multiuser enviornment , I tried with ps -f , but it does not give me the complete answer , it gives me which shells I hv opened like tht , I want the processes like which I started in shell itself like cscope or make or like tht .... I think tht u can understand my problem with the above #$@ description -TIA Vishal |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Have you tryied :
Code:
ps --user <user> |
|
#3
|
|||
|
|||
|
thanx for this command . Is it possible for me to view all the details about the process like , if its make than what was the file I was making ... and so as with other such commands.
-TIA |
|
#4
|
|||
|
|||
|
It's hard to tell what make's doing from watching make in ps, there's no "I AM NOW DOING Z" string that it constantly changes for your convenience. On some systems you might be able to tell what a process is waiting on, if anything, but that doesn't sound quite like what you're after. You can see the commands it spawns as it does things, though. These are often short-lived and easy to miss from a single ps listing. Try 'top -u user' to watch things more realtime-like.
|
|
#5
|
||||
|
||||
|
truss command can help you to find out the behaviour of a process.
Take the process id and do truss on it. Check man pages for truss |
||||
| Google The UNIX and Linux Forums |