<?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: lsof in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986004#M123280</link>
    <description>check this&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.67/man.html" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.67/man.html&lt;/A&gt;</description>
    <pubDate>Mon, 02 Jun 2003 02:28:57 GMT</pubDate>
    <dc:creator>T G Manikandan</dc:creator>
    <dc:date>2003-06-02T02:28:57Z</dc:date>
    <item>
      <title>lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986001#M123277</link>
      <description>Does lsof support 64 bit os?&lt;BR /&gt;I have installed the lsof 4.67, but while I run the lsof, the error message as below,&lt;BR /&gt;# ./lsof&lt;BR /&gt;lsof: FATAL: lsof was built for a 32 bit kernel, but this&lt;BR /&gt;      is a 64 bit kernel.</description>
      <pubDate>Mon, 02 Jun 2003 01:50:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986001#M123277</guid>
      <dc:creator>j773303</dc:creator>
      <dc:date>2003-06-02T01:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986002#M123278</link>
      <description>Get it from here&lt;BR /&gt;&lt;BR /&gt;&lt;A href="ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/binaries/hpux/B.11.00/vxfs/64/9000_800/" target="_blank"&gt;ftp://ftp.fu-berlin.de/pub/unix/tools/lsof/binaries/hpux/B.11.00/vxfs/64/9000_800/&lt;/A&gt;</description>
      <pubDate>Mon, 02 Jun 2003 02:13:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986002#M123278</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-06-02T02:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986003#M123279</link>
      <description>Thanks, but it is just a binary file, I also want to know to how to use is, for example: man lsof</description>
      <pubDate>Mon, 02 Jun 2003 02:26:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986003#M123279</guid>
      <dc:creator>j773303</dc:creator>
      <dc:date>2003-06-02T02:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986004#M123280</link>
      <description>check this&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.67/man.html" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.67/man.html&lt;/A&gt;</description>
      <pubDate>Mon, 02 Jun 2003 02:28:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986004#M123280</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-06-02T02:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986005#M123281</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;NB. List open files (remember in unix everything is a file) &lt;BR /&gt;&lt;BR /&gt;Here is some simple uses: &lt;BR /&gt;To see all open files of a paricular process (via its pid): &lt;BR /&gt;&lt;BR /&gt;# lsof -p &lt;PID&gt; &lt;BR /&gt;&lt;BR /&gt;To see all open files associated with a command: &lt;BR /&gt;&lt;BR /&gt;# lsof -c cron &lt;BR /&gt;&lt;BR /&gt;...or by a logon name: &lt;BR /&gt;&lt;BR /&gt;# lsof -u &lt;NAME&gt; &lt;BR /&gt;# lsof -u &lt;UID&gt; &lt;BR /&gt;&lt;BR /&gt;...or what process is using a TCP socket: &lt;BR /&gt;&lt;BR /&gt;# lsof -i tcp:161 &lt;BR /&gt;# lsof -i udp:161 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Also &lt;BR /&gt;a. suppose a process has a port which is hanging, &lt;BR /&gt;   you can grep on the port no., &lt;BR /&gt;   know which process owned that port no.,&lt;BR /&gt;   kill that process to free that port. Generally helpful in web applications. &lt;BR /&gt;b. when you want to find out whos creating the /tmp/log that is building rappidly, &lt;BR /&gt;c. when you want to unmount a filesystem but it's busy, find out who's using it. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj&lt;/UID&gt;&lt;/NAME&gt;&lt;/PID&gt;</description>
      <pubDate>Mon, 02 Jun 2003 04:24:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986005#M123281</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-06-02T04:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986006#M123282</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;lsof for 64 bit hp-ux doesn't built it so for,&lt;BR /&gt;anyway lsof will work on 64 bit hp-ux, ref the link given by TG</description>
      <pubDate>Mon, 02 Jun 2003 05:04:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986006#M123282</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2003-06-02T05:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986007#M123283</link>
      <description>Hi  &lt;BR /&gt;&lt;BR /&gt;Download the source code &lt;BR /&gt;lsof-4.64-ss-11.00.tar.gz &lt;BR /&gt;uncompress and untar it. &lt;BR /&gt;&lt;BR /&gt;go to lsof-4.64 directory and run ./configure hpux &lt;BR /&gt;it will ask few questions keep answering and (don't do inventory check) select default for ease. &lt;BR /&gt;&lt;BR /&gt;then run "make" this process will create a file called lsof in the same directory. &lt;BR /&gt;Use this file it will definately work. &lt;BR /&gt;&lt;BR /&gt;I tried this on 64 bit kernel on 11.11 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Majeed&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jun 2003 11:23:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986007#M123283</guid>
      <dc:creator>Abdul Majeed Lardhi</dc:creator>
      <dc:date>2003-06-02T11:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: lsof</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986008#M123284</link>
      <description>Although it would be preferable for you to get the source and compile locally, I have attached a 64 bit lsof binary if you would prefer that.&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jun 2003 12:47:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lsof/m-p/2986008#M123284</guid>
      <dc:creator>Tom Danzig</dc:creator>
      <dc:date>2003-06-02T12:47:30Z</dc:date>
    </item>
  </channel>
</rss>

