<?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: open files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967849#M119765</link>
    <description>You can kill all the processes on a filesystem as follows:&lt;BR /&gt;&lt;BR /&gt;fuser -cuk /fs_name&lt;BR /&gt;&lt;BR /&gt;Use with caution, you can bring down your machine if you're not careful.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Wed, 07 May 2003 16:52:24 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2003-05-07T16:52:24Z</dc:date>
    <item>
      <title>open files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967846#M119762</link>
      <description>when a process was dumping data to a file in / file system, the file was deleted.&lt;BR /&gt;"bdf /" and "du -ksx /" show a big difference of 120MB about space used. How to know which process was writing to the deleted file? How to get the space back?</description>
      <pubDate>Wed, 07 May 2003 16:38:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967846#M119762</guid>
      <dc:creator>Alistair Tonner</dc:creator>
      <dc:date>2003-05-07T16:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: open files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967847#M119763</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The process is still running and still writing to the disk even though the file was deleted.  If you have Glance installed you can use it to try to find the process holding open the file, but a better tool would be lsof.  Try the HP-UX Porting Center to get a copy of lsof.  &lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 07 May 2003 16:47:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967847#M119763</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-05-07T16:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: open files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967848#M119764</link>
      <description>I forgot to add that once you find the process writing to the file, you can just terminate it or kill it and your space should be freed up.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 07 May 2003 16:48:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967848#M119764</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-05-07T16:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: open files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967849#M119765</link>
      <description>You can kill all the processes on a filesystem as follows:&lt;BR /&gt;&lt;BR /&gt;fuser -cuk /fs_name&lt;BR /&gt;&lt;BR /&gt;Use with caution, you can bring down your machine if you're not careful.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 07 May 2003 16:52:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967849#M119765</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-05-07T16:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: open files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967850#M119766</link>
      <description>The file was deleted in fear of root file system full. We do have "lsof" utility installed. However, without file name, without knowing which process, how can we identify cause they are so many open files in root file system. The file deleted was a core file.</description>
      <pubDate>Wed, 07 May 2003 16:53:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967850#M119766</guid>
      <dc:creator>Alistair Tonner</dc:creator>
      <dc:date>2003-05-07T16:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: open files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967851#M119767</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try running lsof and see what you get in the Name column. It normally lists the name of the  open file, but I'm guessing that it will list the filesystem/logical volume and inode number for the process with the deleted, which should be a hint.  &lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 07 May 2003 17:01:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967851#M119767</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-05-07T17:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: open files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967852#M119768</link>
      <description>lsof -p pid&lt;BR /&gt;lsof -u uid&lt;BR /&gt;lsof /file_system &lt;BR /&gt;&lt;BR /&gt;Man 'lsof' :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cict.fr/hppd/hpux/Sysadmin/lsof-4.64/man.html" target="_blank"&gt;http://hpux.cict.fr/hppd/hpux/Sysadmin/lsof-4.64/man.html&lt;/A&gt;</description>
      <pubDate>Wed, 07 May 2003 22:58:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/open-files/m-p/2967852#M119768</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-05-07T22:58:53Z</dc:date>
    </item>
  </channel>
</rss>

