<?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: how to find out 32bit or 64bit binaries in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803057#M82369</link>
    <description>SivaKumar is correct, use file.&lt;BR /&gt;&lt;BR /&gt;It may/may not obvious in many cases.  However the following can be used:&lt;BR /&gt;PA-RISC1.1 shared executable dynamically linked = 32 bit&lt;BR /&gt;ELF-64 shared object file - PA-RISC 2.0 (LP64) = 64 bit&lt;BR /&gt;&lt;BR /&gt;In most cases if it does not explicitly state 64 bit, it's probably not.  Another way to see a bit about how it was compiled is to use chatr.  Look for references to 64 bit libaries.&lt;BR /&gt;# chatr /usr/bin/login&lt;BR /&gt;         shared library list:&lt;BR /&gt;             dynamic   /usr/lib/libpam.1&lt;BR /&gt;             dynamic   /usr/lib/libsec.2&lt;BR /&gt;             dynamic   /usr/lib/libnsl.1&lt;BR /&gt;             dynamic   /usr/lib/libc.2&lt;BR /&gt;&lt;BR /&gt;A 64 bit library might be:&lt;BR /&gt;/ux/libsobj_i80/libs/libc/shared_pa2_64/obj&lt;BR /&gt;&lt;BR /&gt;Cheryl&lt;BR /&gt;</description>
    <pubDate>Tue, 10 Sep 2002 12:16:03 GMT</pubDate>
    <dc:creator>Cheryl Griffin</dc:creator>
    <dc:date>2002-09-10T12:16:03Z</dc:date>
    <item>
      <title>how to find out 32bit or 64bit binaries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803052#M82364</link>
      <description>&lt;BR /&gt;Hello there.&lt;BR /&gt;&lt;BR /&gt;I wish to find out whether an executable is 64bit or 32bit.  Can you please help me with the unix commands to find that?&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Vimala.</description>
      <pubDate>Tue, 10 Sep 2002 08:16:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803052#M82364</guid>
      <dc:creator>Vimala L</dc:creator>
      <dc:date>2002-09-10T08:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to find out 32bit or 64bit binaries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803053#M82365</link>
      <description>Hi,&lt;BR /&gt;#file /bin/binary&lt;BR /&gt;will tell you the details.&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Sep 2002 08:19:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803053#M82365</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-10T08:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to find out 32bit or 64bit binaries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803054#M82366</link>
      <description>&lt;A href="https://www.beepz.com/personal/merijn/#FAQ" target="_blank"&gt;https://www.beepz.com/personal/merijn/#FAQ&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also tels you about the C compilers and the kernel version/architecture</description>
      <pubDate>Tue, 10 Sep 2002 08:39:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803054#M82366</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-09-10T08:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to find out 32bit or 64bit binaries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803055#M82367</link>
      <description>getconf KERNEL_BITS&lt;BR /&gt;&lt;BR /&gt;Man getconf for more.&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Sep 2002 11:56:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803055#M82367</guid>
      <dc:creator>Victor_5</dc:creator>
      <dc:date>2002-09-10T11:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to find out 32bit or 64bit binaries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803056#M82368</link>
      <description>&lt;BR /&gt;cd &lt;DIR to="" check=""&gt;&lt;BR /&gt;file * | grep executable | grep ELF-64&lt;BR /&gt;&lt;BR /&gt;Will show 64 bit binaries. Anything else is only 32 bit (eg. PA-RISC1.1 or PA-RISC2.0)&lt;BR /&gt;&lt;/DIR&gt;</description>
      <pubDate>Tue, 10 Sep 2002 12:12:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803056#M82368</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-09-10T12:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to find out 32bit or 64bit binaries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803057#M82369</link>
      <description>SivaKumar is correct, use file.&lt;BR /&gt;&lt;BR /&gt;It may/may not obvious in many cases.  However the following can be used:&lt;BR /&gt;PA-RISC1.1 shared executable dynamically linked = 32 bit&lt;BR /&gt;ELF-64 shared object file - PA-RISC 2.0 (LP64) = 64 bit&lt;BR /&gt;&lt;BR /&gt;In most cases if it does not explicitly state 64 bit, it's probably not.  Another way to see a bit about how it was compiled is to use chatr.  Look for references to 64 bit libaries.&lt;BR /&gt;# chatr /usr/bin/login&lt;BR /&gt;         shared library list:&lt;BR /&gt;             dynamic   /usr/lib/libpam.1&lt;BR /&gt;             dynamic   /usr/lib/libsec.2&lt;BR /&gt;             dynamic   /usr/lib/libnsl.1&lt;BR /&gt;             dynamic   /usr/lib/libc.2&lt;BR /&gt;&lt;BR /&gt;A 64 bit library might be:&lt;BR /&gt;/ux/libsobj_i80/libs/libc/shared_pa2_64/obj&lt;BR /&gt;&lt;BR /&gt;Cheryl&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Sep 2002 12:16:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803057#M82369</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2002-09-10T12:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to find out 32bit or 64bit binaries</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803058#M82370</link>
      <description>Sorry for my misunderstood, Vimala. I read your post very quilcly but obviously I missed something, file is correct.&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Sep 2002 12:30:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-find-out-32bit-or-64bit-binaries/m-p/2803058#M82370</guid>
      <dc:creator>Victor_5</dc:creator>
      <dc:date>2002-09-10T12:30:37Z</dc:date>
    </item>
  </channel>
</rss>

