<?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: 64bit or 32bit in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397228#M200170</link>
    <description>Try:&lt;BR /&gt;$ getconf KERNEL_BITS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;RGDS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Mauro</description>
    <pubDate>Mon, 11 Oct 2004 04:48:05 GMT</pubDate>
    <dc:creator>Mauro Gatti</dc:creator>
    <dc:date>2004-10-11T04:48:05Z</dc:date>
    <item>
      <title>64bit or 32bit</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397226#M200168</link>
      <description>Hello everyone,&lt;BR /&gt;&lt;BR /&gt;how can I know if the system I'm using is 64bit or 32bit</description>
      <pubDate>Mon, 11 Oct 2004 04:37:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397226#M200168</guid>
      <dc:creator>Mazen Jarrah</dc:creator>
      <dc:date>2004-10-11T04:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: 64bit or 32bit</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397227#M200169</link>
      <description>You can know it by using,&lt;BR /&gt;&lt;BR /&gt; getconf HW_CPU_SUPP_BITS&lt;BR /&gt;&lt;BR /&gt;It will give that information to you.&lt;BR /&gt;&lt;BR /&gt;HTH.</description>
      <pubDate>Mon, 11 Oct 2004 04:46:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397227#M200169</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-10-11T04:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: 64bit or 32bit</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397228#M200170</link>
      <description>Try:&lt;BR /&gt;$ getconf KERNEL_BITS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;RGDS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Mauro</description>
      <pubDate>Mon, 11 Oct 2004 04:48:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397228#M200170</guid>
      <dc:creator>Mauro Gatti</dc:creator>
      <dc:date>2004-10-11T04:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: 64bit or 32bit</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397229#M200171</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;# file /stand/vmunix&lt;BR /&gt;vmunix:         ELF-64 executable object file - PA-RISC 2.0 (LP64)&lt;BR /&gt;&lt;BR /&gt;more info in the faqs.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://mirrors.develooper.com/hpux/" target="_blank"&gt;http://mirrors.develooper.com/hpux/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Mon, 11 Oct 2004 04:49:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397229#M200171</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2004-10-11T04:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: 64bit or 32bit</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397230#M200172</link>
      <description>/opt/ignite/bin/print_manifest|grep OS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sunil</description>
      <pubDate>Mon, 11 Oct 2004 04:49:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397230#M200172</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2004-10-11T04:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: 64bit or 32bit</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397231#M200173</link>
      <description>You can known with system configuration with c program as,&lt;BR /&gt;&lt;BR /&gt;#include &lt;UNISTD.H&gt;&lt;BR /&gt;main()&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;long ret = sysconf(_SC_HW_32_64_CAPABLE);&lt;BR /&gt;&lt;BR /&gt;if (_SYSTEM_SUPPORTS_ILP32OS(ret) != 0) {&lt;BR /&gt;       printf ("System supports 32-bit OS");&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt;if (_SYSTEM_SUPPORTS_LP64OS(ret) != 0) {&lt;BR /&gt;      printf ("System supports 64-bit OS\n");&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;It will give you the details there.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;/UNISTD.H&gt;</description>
      <pubDate>Mon, 11 Oct 2004 04:52:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/64bit-or-32bit/m-p/3397231#M200173</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-10-11T04:52:56Z</dc:date>
    </item>
  </channel>
</rss>

