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
FvwmConsoleC.pl(1)						   Fvwm Modules 						FvwmConsoleC.pl(1)

NAME
FvwmConsoleC.pl - Command editor for fvwm command input interface SYNOPSIS
FvwmConsole -e /usr/X11/lib/fvwm/FvwmConsoleC.pl COPYRIGHT
Copyright 1996, Toshi Isogai. No guarantees or warranties are provided. Use this program at your own risk. Permission to use this program for any purpose is given, as long as the copyright is kept intact. DESCRIPTION
FvwmConsoleC.pl offers editing capabilities while the user is entering the line. By default, the line editing commands are similar to those of emacs. It also offers substitution , which replaces a pattern to a string before it sends the command. FUNCTIONS
Functions are bound to a key or key combination to be invoked. The followings are functions available and their default key bindings. bind Meta-k, Ctrl-x Ctrl-b List up key bindings and substitutions. boh Move to the beginning of history. boh_ign_mode Esc-< Move to the beginning of history. If it is in search mode, continue. bol Home, Ctrl-a Move cursor to the beginning of the line. bs[(n)] BackSpace, Ctrl-h Backspace n times. default of n is 1. cancel Ctrl-x Ctrl-k Cancel the current input. del_back_line Delete the line from the beginning to the cursor. del_back_word Ctrl-w Delete the word from the beginning to the cursor. del_char [(n)] Delete, Ctrl-d Delete n characters from the cursor to the right. Default of n is 1. del_forw_line Ctrl-k Delete the line from the cursor to the end. del_forw_word Meta-d Delete the word from the cursor to the end. del_line Ctrl-u Delete the entire line. enter Enter, Ctrl-j, Ctrl-m Perform substitution if applicable and send the line to fvwm. enter_wo_subst Meta-Enter Send the line to fvwm without any substitution. eoh Move to the end of history. eoh_ign_mode Esc-> Move to the end of history. If it is in search mode, continue. eol End, Ctrl-e Move the cursor to the end of line. ins_char (str) Insert string at the cursor. ins_last_word Esc-. Insert the last argument of the previous command at the cursor. ins_nth_word Meta-[1..9] Insert the n-th argument of the previous command at the cursor. list_func Meta-l List up available editing functions. next_char Right, Ctrl-f Move the cursor to the next character. next_line Down, Ctrl-n Move to the next line in history. next_word Meta-f Move the cursor to the next word. prefix Wait for the next character typed in for multi-key binding. prev_char Left, Ctrl-b Move the cursor to the previous character. prev_line Up, Ctrl-p Move to the previous line in history. prev_word Meta-b Move the cursor to the previous word. quote Ctrl-q Insert the next character typed into the buffer literally. search Ctrl-s Search pattern in history. search_rev Ctrl-r Search pattern in history in reverse order. subst Meta-s Substitute all patterns to strings and reprint the line. The substitutions are not nested and performed in the order that they are defined. CONFIGURATION
The key binding can be overridden or defined in fvwm module configuration. *FvwmConsole: Key ck prev_line Non-space character sequence need not be quoted. In order to undefine, omit the last argument. *FvwmConsole: Key ck Note that non-meta character is case sensitive. c means control key, e means escape, and m is alt key. It also accepts Subst configuration. Users often input long fvwm command repeatedly. Subst will replace particular input sequence to user defined string. Example: *FvwmConsole: Subst '^bigx' 'Exec xterm -g 120x60+0+0 -fn 10x20 -fg black -bg lemonchiffon' Typing 'bigx<return>' in FvwmConsole will launch xterm. '^' denotes the beginning of line in regular expression. 'pl' in the middle of the command will not be replaced. Although the format looks different, it takes Perl regular expression. It just uses single or double quote as the delimiter. Single or double quotes have no difference, although they have to match, and cannot include itself in the string. *FvwmConsole: Subst '^gs*(d+)' 'Desk 0 0 GotoPage 0 $1 Focus' Entering 'g4' or 'g 4' will jump to desk 0 page 0 4 and focus. INVOCATION
FvwmConsoleC.pl should be invoked by FvwmConsole. SEE ALSO
FvwmConsole(1x), perlre(1) AUTHOR
Toshi Isogai 3rd Berkeley Distribution 7 May 208 (2.5.26) FvwmConsoleC.pl(1)
All times are GMT -4. The time now is 01:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy