Sponsored Content
Operating Systems AIX Regarding nmon and large pages Post 302978764 by adityar on Wednesday 3rd of August 2016 11:40:50 AM
Old 08-03-2016
Regarding nmon and large pages

Hi Members,

To check the large pages configuration in AIX, this is what we use:

"nmon" followed by "Enter Key" followed by "L" (without any double quotes)

Is there any way that we can achieve the same in a single command.

Regards,
Aditya
 

9 More Discussions You Might Find Interesting

1. AIX

Another NMON

Anyone ever experienced a core dump when running NMON. I am running AIX 5.3 on an 8 CPU LPAR (P570). This has only recently started to happen. (3 Replies)
Discussion started by: johnf
3 Replies

2. AIX

nmon

Can any one help where i can find articals about nomn I need to know how to read this tools ┌─CPU-Utilisation-Small-View───────────────────────────────────────────────────┐ │ 0----------25-----------50----------75----------100│ │CPU User% Sys% Wait% Idle%| ... (3 Replies)
Discussion started by: habuzahra
3 Replies

3. AIX

Nmon

HI Im new on this world. Im working with nmon and I understand that this tool generates a files that later with excel I can see the graphcial of my server. The problem is that this process is execute manualy and I need to meake automatic. How can I do That. Sorry for my english!! :o (3 Replies)
Discussion started by: jegtoro
3 Replies

4. AIX

Nmon tool

How to analyze nmon output or is there any tool for analyzing. (2 Replies)
Discussion started by: vjm
2 Replies

5. AIX

Nmon tool

Hi All, I have a p550 server with 4 proc. But when i run nmon analyzer in cpu_sum it show 5 processors cpu0 cpu1 cpu2 cpu3 cpu4. Why it is showing 5 processors. (6 Replies)
Discussion started by: vjm
6 Replies

6. AIX

Help with nmon utility

We have processes that run on our AIX box that sometimes run away and end up consuming 99% of the CPU. I'd like to create a script that would attempt to monitor when this happens and send an email alert with the PID and CPU %. Has anyone done such a thing? I know that you can run the nmon output to... (6 Replies)
Discussion started by: ssmith001
6 Replies

7. AIX

NMON 12a Size of proc in 4k pages?

Hi running NMON 12a under AIX. Lately I get some out of mem errors from a java machine running "-xmx 1024" which means it can hold up to 1GB mem. Monitoring the process in NMON shows under TOP -> SIZE KB -> 250M I've found nothing in the documentation so I'd like to ask here if anyone... (2 Replies)
Discussion started by: Malapha
2 Replies

8. AIX

Please Help With NMON Data

Hi guys, I am an Oracle DBA and I have an account with some databases on an AIX 5.3 server. I am trying to figure out if I really need to add memory to this box or not, the account team keeps pushing me to make a decision and I don't want to waste their money if I don't need to right now, we could... (4 Replies)
Discussion started by: nibbsbitt
4 Replies

9. Shell Programming and Scripting

Can nmon be customized?

Hi, my name is Steve Ngai from Malaysia. This is my first post. Hope to learn more about Unix from this forum. My first question is can nmon be customized? When I run nmon, I need to manually type c to see CPU usage, then m for memory usage. Can I pass it some nmon option to automatically see... (2 Replies)
Discussion started by: ngaisteve1
2 Replies
LGAMMA(3M)																LGAMMA(3M)

NAME
lgamma - log gamma function SYNOPSIS
#include <math.h> double lgamma(x) double x; DESCRIPTION
_ Lgamma returns ln|| (x)|. _ The external integer signgam returns the sign of | (x) . IDIOSYNCRASIES
_ Do not use the expression signgam*exp(lgamma(x)) to compute g := | (x). Instead use a program like this (in C): lg = lgamma(x); g = signgam*exp(lg); _ Only after lgamma has returned can signgam be correct. Note too that | (x) must overflow when x is large enough, underflow when -x is large enough, and spawn a division by zero when x is a nonpositive integer. _ Only in the UNIX m_th library for C was the na_e gamma ever attached to ln| . Elsewhere, for instance in IBM's FORTRAN library, the name GAMMA belongs to | and the name ALGAMA to ln| in single precision; in double the names are DGAMMA and DLGAMA. Why should C be different? _ Archaeological records suggest that C's gamma originally delivered ln(| (|x|)). Later, the program gamma was changed to cope with negative arguments x in a more conventional way, but the documentation did _ot reflect that change correctly. The most recent change corrects inac- curate values when x is almost a negative integer, and lets | (x) be computed without conditional expressions. Programmers should not assume that lgamma has settled down. At some time in the future, the name gamma will be rehabilitated and used for the gamma function, just as is done in FORTRAN. The reason for this is not so much compatibility with FORTRAN as a desire to achieve greater speed for smaller values of |x| and greater accuracy for larger values. Meanwhile, programmers who have to use the name gamma in its former sense, for what is now lgamma, have two choices: 1) Use the old math library, libom. 2) Add the following program to your others: #include <math.h> double gamma(x) double x; { return (lgamma(x)); } DIAGNOSTICS
The reserved operand is returned on a VAX for negative integer arguments, errno is set to ERANGE; for very large arguments over/underflows will occur inside the lgamma routine. SEE ALSO
math(3M), infnan(3M) 4.3 Berkeley Distribution May 12, 1986 LGAMMA(3M)
All times are GMT -4. The time now is 10:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy