<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: sizing the kernel in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580728#M924062</link>
    <description>&amp;gt; Is the kernel size the difference between the physical and the available?&lt;BR /&gt;&lt;BR /&gt;Close. The difference also includes the size of the (probably dynamic) file system buffer cache and all tables, i.e. process table, file table, etc., etc.. I.e. "available" means memory available to processes and data.&lt;BR /&gt;</description>
    <pubDate>Tue, 18 Sep 2001 08:03:04 GMT</pubDate>
    <dc:creator>Frank Slootweg</dc:creator>
    <dc:date>2001-09-18T08:03:04Z</dc:date>
    <item>
      <title>sizing the kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580723#M924057</link>
      <description>How does one tell how much overhead, or memory, the o/s and/or kernel is using on a HP-UX 11.xx system? &lt;BR /&gt;</description>
      <pubDate>Mon, 17 Sep 2001 19:53:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580723#M924057</guid>
      <dc:creator>VINCENT SPURGEON</dc:creator>
      <dc:date>2001-09-17T19:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: sizing the kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580724#M924058</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think "dmesg" should tell you what you are looking for. think so.&lt;BR /&gt;&lt;BR /&gt;hope this helps.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Sep 2001 19:55:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580724#M924058</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-09-17T19:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: sizing the kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580725#M924059</link>
      <description>Hi&lt;BR /&gt;This was someone's reply. I like it. You might too.&lt;BR /&gt;&lt;BR /&gt;for HP-UX 10x &lt;BR /&gt;echo physmem/D | adb -k /stand/vmunix /dev/kmem &lt;BR /&gt;physmem: &lt;BR /&gt;physmem: 24576 &lt;BR /&gt;&lt;BR /&gt;for HP-UX 11.x systems running on 32 bit architecture: &lt;BR /&gt;&lt;BR /&gt;echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem &lt;BR /&gt;phys_mem_pages: &lt;BR /&gt;phys_mem_pages: 24576 &lt;BR /&gt;&lt;BR /&gt;for HP-UX 11.x systems running on 64 bit architecture: &lt;BR /&gt;&lt;BR /&gt;echo phys_mem_pages/D | adb64 -k /stand/vmunix /dev/mem &lt;BR /&gt;phys_mem_pages: &lt;BR /&gt;phys_mem_pages: 262144 &lt;BR /&gt;&lt;BR /&gt;The results of these commands are in memory pages, multiply by 4096 &lt;BR /&gt;to obtain the size in bytes. &lt;BR /&gt;&lt;BR /&gt;To determine the amount of lockable memory: &lt;BR /&gt;&lt;BR /&gt;echo total_lockable_mem/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;total_lockable_mem: &lt;BR /&gt;total_lockable_mem: 185280 &lt;BR /&gt;&lt;BR /&gt;To determine the number of free swap pages : &lt;BR /&gt;&lt;BR /&gt;echo swapspc_cnt/D | adb -k /stand/vmunix /dev/kmem &lt;BR /&gt;swapspc_cnt: &lt;BR /&gt;swapspc_cnt: 216447 &lt;BR /&gt;&lt;BR /&gt;This will display the number of free swap pages. &lt;BR /&gt;Multiply the number returned by 4096 for the number of free swap bytes. &lt;BR /&gt;&lt;BR /&gt;To determine the processor speed: &lt;BR /&gt;&lt;BR /&gt;echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;itick_per_usec: &lt;BR /&gt;itick_per_usec: 360 &lt;BR /&gt;&lt;BR /&gt;To determine the number of processors in use: &lt;BR /&gt;&lt;BR /&gt;echo "runningprocs/D" | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;runningprocs: &lt;BR /&gt;runningprocs: 2 &lt;BR /&gt;&lt;BR /&gt;To determine the number of pages of buffer cache ( 4Kb in size) &lt;BR /&gt;&lt;BR /&gt;echo bufpages/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;bufpages: &lt;BR /&gt;bufpages: 18848 &lt;BR /&gt;&lt;BR /&gt;To display kernel parameters using adb use the parameter name : &lt;BR /&gt;&lt;BR /&gt;echo nproc/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;nproc: &lt;BR /&gt;nproc: 276 &lt;BR /&gt;&lt;BR /&gt;To determine the kernel your booted from: &lt;BR /&gt;&lt;BR /&gt;10.x &lt;BR /&gt;echo 'boot_string/S' | adb /stand/vmunix /dev/mem &lt;BR /&gt;boot_string: &lt;BR /&gt;boot_string: disc(52.6.0;0)/stand/vmunix &lt;BR /&gt;&lt;BR /&gt;11.x &lt;BR /&gt;echo 'boot_string/S' | adb /stand/vmunix /dev/mem &lt;BR /&gt;boot_string: &lt;BR /&gt;boot_string: disk(0/0/2/0.6.0.0.0.0.0;0)/stand/vmunix &lt;BR /&gt;&lt;BR /&gt;Sachin</description>
      <pubDate>Mon, 17 Sep 2001 21:23:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580725#M924059</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2001-09-17T21:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: sizing the kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580726#M924060</link>
      <description>The only thing I'm seeing with regards to memory is: &lt;BR /&gt;Memory Information:&lt;BR /&gt;    physical page size = 4096 bytes, logical page size = 4096 bytes&lt;BR /&gt;    Physical: 3145728 Kbytes, lockable: 2381084 Kbytes, available: 2739284 Kbytes&lt;BR /&gt;&lt;BR /&gt;I see nothing about the vmunix.</description>
      <pubDate>Mon, 17 Sep 2001 21:29:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580726#M924060</guid>
      <dc:creator>VINCENT SPURGEON</dc:creator>
      <dc:date>2001-09-17T21:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: sizing the kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580727#M924061</link>
      <description>Is the kernel size the difference between the physical and the available?&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Sep 2001 21:53:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580727#M924061</guid>
      <dc:creator>VINCENT SPURGEON</dc:creator>
      <dc:date>2001-09-17T21:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: sizing the kernel</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580728#M924062</link>
      <description>&amp;gt; Is the kernel size the difference between the physical and the available?&lt;BR /&gt;&lt;BR /&gt;Close. The difference also includes the size of the (probably dynamic) file system buffer cache and all tables, i.e. process table, file table, etc., etc.. I.e. "available" means memory available to processes and data.&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Sep 2001 08:03:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sizing-the-kernel/m-p/2580728#M924062</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2001-09-18T08:03:04Z</dc:date>
    </item>
  </channel>
</rss>

