<?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: Filesystem Full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980021#M121997</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you are telling free is 0% it will not come down till you reduce atleast by 1% but you can see channges in KB free/ KB used.&lt;BR /&gt;&lt;BR /&gt;Sometime if you remove a file which is in use than also space will not be released.&lt;BR /&gt;&lt;BR /&gt;2. make sure you are removing files from perticuler file system and the directory inside that FS is not symolic link to other place.&lt;BR /&gt;&lt;BR /&gt;This may help u...&lt;BR /&gt;SS</description>
    <pubDate>Fri, 23 May 2003 03:00:01 GMT</pubDate>
    <dc:creator>Sunil Sharma_1</dc:creator>
    <dc:date>2003-05-23T03:00:01Z</dc:date>
    <item>
      <title>Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980015#M121991</link>
      <description>&lt;BR /&gt;When i issue the command df -k, one of the filesystems indicates 0% availability. I tried to remove some files in the filesystem but status didn't change. There is still lack of disk space.</description>
      <pubDate>Thu, 22 May 2003 15:57:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980015#M121991</guid>
      <dc:creator>Henry Tuason Macasiano</dc:creator>
      <dc:date>2003-05-22T15:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980016#M121992</link>
      <description>Are you saying that the % free didn't change from 0 or that the free K did not change ? &lt;BR /&gt;&lt;BR /&gt;Note - If you removed less that 1% of the file system, it's %free will not change.</description>
      <pubDate>Thu, 22 May 2003 16:34:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980016#M121992</guid>
      <dc:creator>Mike Miller_8</dc:creator>
      <dc:date>2003-05-22T16:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980017#M121993</link>
      <description>You're going to need to do a little more work to find out where the congestion is.  Use "du -sk /filesystem/*" to find out where most of the usage is.  If it turns out to be a directory, drill down into the directory with "du -sk /filesystem/directory/*".  Use the find command to get rid of core files "find /filesystem -type f -name core -exec rm {} \;".  You can also use find to find files with a size greater than x amount with -size option.&lt;BR /&gt;&lt;BR /&gt;The other option you have is to try to enlarge the filesystem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 22 May 2003 16:40:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980017#M121993</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-05-22T16:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980018#M121994</link>
      <description>The above answers are true.  However, sometimes the space doesn't get release right away.  If you remove a file that is being used by a process, the space doesn't go away until the process finishes. &lt;BR /&gt;&lt;BR /&gt;So, log off and come back, and you may see the space has disappeared.&lt;BR /&gt;&lt;BR /&gt;Do "fuser -cu /mountpoint" on the mountpoint to see if anyone is in there.</description>
      <pubDate>Thu, 22 May 2003 18:12:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980018#M121994</guid>
      <dc:creator>Stuart Abramson_2</dc:creator>
      <dc:date>2003-05-22T18:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980019#M121995</link>
      <description>Also make sure you are deleting files in that particular filesystem, not a in the sub directory which is a mount point.</description>
      <pubDate>Thu, 22 May 2003 23:02:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980019#M121995</guid>
      <dc:creator>Lixin Qin</dc:creator>
      <dc:date>2003-05-22T23:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980020#M121996</link>
      <description>It's also possible that a process has not cleanly exited and as such a file handle is being kept open but the file will not be visible in the filesystem using find, ls commands etc.  The du command will report the space being as being used but you will need to use lsof or glance to identify the process that is keeping the file handle open &amp;amp; hence not releasing the space.  Once you kill the process the space will be released to the FS.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Con</description>
      <pubDate>Thu, 22 May 2003 23:50:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980020#M121996</guid>
      <dc:creator>Con O'Kelly</dc:creator>
      <dc:date>2003-05-22T23:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980021#M121997</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you are telling free is 0% it will not come down till you reduce atleast by 1% but you can see channges in KB free/ KB used.&lt;BR /&gt;&lt;BR /&gt;Sometime if you remove a file which is in use than also space will not be released.&lt;BR /&gt;&lt;BR /&gt;2. make sure you are removing files from perticuler file system and the directory inside that FS is not symolic link to other place.&lt;BR /&gt;&lt;BR /&gt;This may help u...&lt;BR /&gt;SS</description>
      <pubDate>Fri, 23 May 2003 03:00:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980021#M121997</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2003-05-23T03:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980022#M121998</link>
      <description>Hi,&lt;BR /&gt;Here is a 1-2-3-4-... I would do in this case...&lt;BR /&gt;1&amp;gt; #df -k /filesystem&lt;BR /&gt;2&amp;gt; #du -sk /filesystem&lt;BR /&gt; if there is a difference in the usage shown by both these commands, then&lt;BR /&gt;&lt;BR /&gt;3&amp;gt; #fuser -cu /filesystem&lt;BR /&gt; check the processes using the file system. &lt;BR /&gt; Check whether any of them has become defunct.&lt;BR /&gt;if nobody is using the file system&lt;BR /&gt;4&amp;gt; #fuser -cuk /filesystem&lt;BR /&gt;5&amp;gt; #umount /file system&lt;BR /&gt;note the volume group and logical volume of the filesystem&lt;BR /&gt;6&amp;gt; #fsck -y /dev/volumegroup/logicalvolume&lt;BR /&gt;7&amp;gt; #mount /filesystem&lt;BR /&gt;8&amp;gt; Cross-check the "du -sk" and "df -k" output.&lt;BR /&gt;And check available free space.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regards...&lt;BR /&gt;Suhas.</description>
      <pubDate>Fri, 23 May 2003 03:01:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980022#M121998</guid>
      <dc:creator>Suhas_2</dc:creator>
      <dc:date>2003-05-23T03:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem Full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980023#M121999</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;i faced this issue. after removing the files also the filesystem shows full.&lt;BR /&gt;&lt;BR /&gt;is any application is using the file system ?&lt;BR /&gt;&lt;BR /&gt;so u have to stop the application and umount the filesystem and mount it again.&lt;BR /&gt;&lt;BR /&gt;run fsck also.&lt;BR /&gt;&lt;BR /&gt;some applications causes like this problems.so before removing the files shutdown the application and remove it.&lt;BR /&gt;&lt;BR /&gt;radhakrishnan</description>
      <pubDate>Fri, 23 May 2003 03:15:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-full/m-p/2980023#M121999</guid>
      <dc:creator>Radhakrishnan Venkatara</dc:creator>
      <dc:date>2003-05-23T03:15:08Z</dc:date>
    </item>
  </channel>
</rss>

