--- In [email protected], "JustMurtuza" <[EMAIL PROTECTED]> wrote: > > Hi, > > What is the command in unix (SEO) to see individual process cpu > consumption or memory usage like task manager --> process in windows > and Top command in Linux(not sure). > > thanks. > Hi Murtuza,
I think "top" command can help you here. Type "man top" & find out the options you want. top provides a dynamic real-time view of a running system. It can display system summary information as well as a list of tasks currently being managed by the Linux kernel. -p : Monitor PIDs as: -pN1 -pN2 ... or -pN1, N2 [,...] Monitor only processes with specified process IDs. This option can be given up to 20 times, or you can provide a comma delimited list with up to 20 pids. Co-mingling both approaches is permitted. So if you want to see about a individual process/ess then use top -pN1 . Hope this helps Sumit

