1846363 Members
3849 Online
110256 Solutions
New Discussion

Kernel size

 
SOLVED
Go to solution
Leonid Mishkind
Frequent Advisor

Kernel size

Hi All.
My question to you is how do I know how much system resources HPUX Kernel takes. I want to have the results of Kernel threads usage only ( only what is compiled into the kernel ) , the minimum system resources of my servers.
I hope my question is clear enough.

Thanks to all.

5 REPLIES 5
Steven E. Protter
Exalted Contributor

Re: Kernel size

Shalom,

You should install gpm/glance from your application cd's on a 60 day trail. gpm can give you a high water mark on kernel parameter actual system use.

It should be possible to drill into the menus and find useful information.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Leonid Mishkind
Frequent Advisor

Re: Kernel size

Shalom SEP.

I have glance/gpm on my system. But I did not find a way to split the information to kernel memory/CPU usage and User memory CPU Usage.
whiteknight
Honored Contributor

Re: Kernel size


Leonid,

You can use kmeminfo to view the detail of kernel memory usage and user memory usage.

Use Glance to view CPU utilization


WK
Problem never ends, you must know how to fix it
Tim Nelson
Honored Contributor
Solution

Re: Kernel size

Here is an example of what you will get with kmeminfo.

Physical memory usage summary (in page/byte/percent):

Physical memory = 8379648 32.0g 100%
Free memory = 1551199 5.9g 19%
User processes = 6124982 23.4g 73% details with -user
System = 686245 2.6g 8%
Kernel = 518653 2.0g 6% kernel text and data
Dynamic Arenas = 92275 360.4m 1% details with -arena
M_TEMP = 19008 74.2m 0%
VFD_BT_NODE = 17617 68.8m 0%
M_SWAP = 8754 34.2m 0%
M_SPINLOCK = 6417 25.1m 0%
ALLOCB_MBLK_LM = 5482 21.4m 0%
Other arenas = 34997 136.7m 0% details with -arena
Super page pool = 2438 9.5m 0% details with -kas
Static Tables = 339590 1.3g 4% details with -static
pfdat = 192291 751.1m 2%
htbl2_0 = 65536 256.0m 1%
pfn_to_virt = 32048 125.2m 0%
bufhash = 20480 80.0m 0% bufcache hash headers
nbuf = 15936 62.2m 0% bufcache headers
Other tables = 13298 51.9m 0% details with -static
Buffer cache = 167592 654.7m 2% details with -bufcache
Leonid Mishkind
Frequent Advisor

Re: Kernel size

Thanks to everyone