Operating System - HP-UX
1846644 Members
2321 Online
110256 Solutions
New Discussion

Re: Kernel Variables List

 
SOLVED
Go to solution
rccmum
Super Advisor

Kernel Variables List

I want to know various kernel variables which are defined and could be queried using adb. I know some of them but not all.

Is there a place where one can find a list of these for HPUX 11.00,11.11 and 11.23 ?

Any help would be appreciated.
Thanks in advance.
5 REPLIES 5
James R. Ferguson
Acclaimed Contributor

Re: Kernel Variables List

Hi:

How about using 'kmtune -l' or for 11.23, 'kctune' without arguments?

Regards!

...JRF...
rccmum
Super Advisor

Re: Kernel Variables List

James,
Thanks for quick response.

I guess I should have made it clear by saying kernel symbols instead like
"phys_mem_pages" etc.

I want to know such kernel symbols list in those HPUX versions and querying them using adb.
Calandrello
Trusted Contributor

Re: Kernel Variables List

Friend kmtune ties version 11.11 in version 11.23 kcmtune to modify the in version 11.23 it has access the address for the navigator: https://hostname:1188/casey/login.cgi

Regards
Sandman!
Honored Contributor

Re: Kernel Variables List

for PARISC use...

# echo 'phys_mem_pages/2D' | adb /stand/vmunix /dev/kmem

for IPF (Itanium) use...

# echo 'phys_mem_pages/2D' | adb -o /stand/vmunix /dev/kmem

Note: the "-o" switch must be supplied for compatibility on IPF platform.
IT_2007
Honored Contributor
Solution

Re: Kernel Variables List

check man page for "nm" which gives all variables from kernel which you are looking for.