Operating System - HP-UX
1833777 Members
2136 Online
110063 Solutions
New Discussion

applications running on my system

 
benseghir_1
Advisor

applications running on my system

hello,

please can you help me, how can i do to know witch applications are running on my system,i do ps -ef , i get all process running on my system,but it's difficult for me to know witch application was running each process.

thank in advance
4 REPLIES 4
Pete Randall
Outstanding Contributor

Re: applications running on my system

Well, you could start by eliminating the system process run by root, lp, etc. Like this:

ps -ef |grep -v root |grep -v lp |grep -v daemon

Then, from the resulting list, you can see which others you want to eliminate and add more "grep -v" statements to do so.


Pete

Pete
jpcast_real
Regular Advisor

Re: applications running on my system

I recommend the use of two utilities: lsof and pstree . Whith lsof you can see lots of options of processes and also the port the processes use . Pstree shows the tree structure of the process , Both are really interesting.
Here rests one who was not what he wanted and didn't want what he was
Rita C Workman
Honored Contributor

Re: applications running on my system

I recommend Glance...if you don't have it, you can install the demo off your Application CD's and use it for 30 days.


Just another option,
Rita
Devender Khatana
Honored Contributor

Re: applications running on my system

Hi,

Usually specific application has some specific name for the processes it generates. For Ex. for oracle you can see #ps -aef|grep -i ora, for SAP use can see #ps -aef|grep -i dw and so on. this way you can found applications running on your system.

HTH,
Devender
Impossible itself mentions "I m possible"