Sponsored Content
Operating Systems AIX Top command in AIX 4.2 (no topas, no nmon, no top)? Post 302331213 by TonyFullerMalv on Saturday 4th of July 2009 07:00:47 PM
Old 07-04-2009
comp.unix.aix Frequently Asked Questions (Part 1 of 5) says:

"Subject: 1.135: Where can I find TOP for AIX?


TOP functionality is included in an AIX package called Monitor. See
question 1.120 for more information."
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

command --> top

I understand the numbers displayed in variable "load average". My question: what are the correct/ideal numbers? Sometimes, I got less than 1. Others, above 6. Also, what HW/SW should I tune in order to have the ideal numbers? Thank you ... (1 Reply)
Discussion started by: dgromerog
1 Replies

2. UNIX for Dummies Questions & Answers

How Can I Have Top Display The Top 20 Processes??

how can i do that in a script withough havin the script halt at the section where the top command is located. am writign a script that will send me the out put of unx commands if the load average of a machine goes beyond the recommended number. top -n 20 i want to save this output to a file... (1 Reply)
Discussion started by: TRUEST
1 Replies

3. AIX

Memory usage statistic? (topas, nmon)

hi, how can i diplay: - the ammount RAM used /free - ammount of ram used from a pid or prozess we have the problem, that malloc is returing a NULL pointer errno = 12 ( not enough space). but i think there is still ram free. nmon : shows all memory used ? Memory Use Physical Virtual... (7 Replies)
Discussion started by: Lazzar
7 Replies

4. UNIX for Dummies Questions & Answers

top command

hi guys, i am having a dual cpu xeon machine. i came to know that i can view the performance by giving top command. but top command shows only the usage of one cpu in percentage while the process are using more than 100% usage in the list . can i know separately the usage of cpus. can you... (5 Replies)
Discussion started by: bijuhpd
5 Replies

5. AIX

TOP Results AIX 5.3

With the exception of the Oracle processes can anyone telll me what these other AIX processes are???? 1032 root 16 21 20K 8K 0.0 slp 0:22+ 145:55 0.0/ 0.5 Kernel (lrud) 51178 root 39 21 20K 20K 0.0 slp 0:12+ 7:10 0.0/ 0.0 Kernel (aioserver) ... (1 Reply)
Discussion started by: mcastill66
1 Replies

6. AIX

nmon vs topas

good morning what is the better solution to examen a P570 ? because i use topas and nmon, and the results are totally different !!! with nmon, i have 80% free cpu, and with nmon, i have 90% of used cpu !!!!!! i take a shot with an intervall of 10s during 10 mn. thank you (0 Replies)
Discussion started by: pascalbout
0 Replies

7. Shell Programming and Scripting

Top command

Hey, Using one single line of command i am trying to show the CPU usage for 4 processors and then filter it out and write it to a text file. Everything seams ok except that i am not able to switch from having the top command show me all CPU processes seperate opposed to showing me the average of... (8 Replies)
Discussion started by: Georgesaa
8 Replies

8. AIX

Need a list of top 10 CPU using processes (also top 10 memory hogs, separately)

Okay, I am trying to come up with a multi-platform script to report top ten CPU and memory hog processes, which will be run by our enterprise monitoring application as an auto-action item when the CPU and Memory utilization gets reported as higher than a certain threshold I use top on other... (5 Replies)
Discussion started by: thenomad
5 Replies

9. AIX

ORACLE Database running slow on AIX ( nmon / topas )

Hello, How can I know if ORACLE Database is running slow due to Memory or due to processing power ? I have only Oracle Database running on a P4 with 4GB RAM. Could anyone suggest any tools which can help me determine exactly if it is memory issue or processor issue. (43 Replies)
Discussion started by: filosophizer
43 Replies

10. Shell Programming and Scripting

Help with top command

Currently when i run top command i get the following columns . CPU TTY PID USERNAME PRI NI SIZE RES STATE TIME %WCPU %CPU COMMAND In this how to remove '%WCPU' column ? Thanks very much in advance . (6 Replies)
Discussion started by: kpravinraj
6 Replies
Deck(3I)						    InterViews Reference Manual 						  Deck(3I)

NAME
Deck - a stack of interactors on top of each other SYNOPSIS
#include <InterViews/deck.h> DESCRIPTION
A deck is a scene containing interactors that are conceptually stacked on top of each other. Only one interactor is visible at a time. A deck is useful to implement ``paging'' through a document, or where only one of several similar components should be visible at a time, as in applications using alternate tool pallets or menus with alternate entries. A deck will try to stretch or shrink the visible interactor to fill the total space. The natural size of a deck is the maximum of its com- ponents. A deck uses its perspective to specify which component is visible. The components are numbered in the order in which they are inserted into the deck, starting with one. A scroller or other interactor which operates on the perspective can be used to allow a user to specify the component to view. Either horizontal or vertical scrolling can be used. PUBLIC OPERATIONS
Deck() Construct a new deck. void Insert(Interactor*) Add an interactor to the deck. void Change(Interactor*) Notify the deck that an interactor's shape has changed. If propagation is on, the deck recomputes its own shape and notifies its parent. void Remove(Interactor*) Take an interactor out of a deck. void Flip(int count = 1) void FlipTo(int position) void Top() void Bottom() Perform operations on the perspective to specify the component to view. Flip specifies the component relative to the current compo- nent. A positive value of count specifies a component nearer to the ``bottom'' of the deck (the components inserted last), and a negative value specifies a component nearer to the ``top''. FlipTo specifies a component by its absolute position in the deck. A positive value of position specifies a position from the top, starting at 1. A negative value specifies a position from the bottom, starting at -1. Top and Bottom are equivalent to FlipTo(1) and FlipTo(-1) respectively. SEE ALSO
Interactor(3I), Scene(3I), Shape(3I) InterViews 13 December 1987 Deck(3I)
All times are GMT -4. The time now is 05:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy