<?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: File System Space... in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180489#M162811</link>
    <description>Most likely there is a open process that is connected to that file you tried to remove. Space will not be freed up until the process dies.&lt;BR /&gt;&lt;BR /&gt;fuser -cu /home&lt;BR /&gt;&lt;BR /&gt;to display the proceses&lt;BR /&gt;&lt;BR /&gt;caution:&lt;BR /&gt;&lt;BR /&gt;fuser -cuk /home&lt;BR /&gt;&lt;BR /&gt;to kill all processes on the /home filesystem.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Mon, 02 Feb 2004 14:09:03 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2004-02-02T14:09:03Z</dc:date>
    <item>
      <title>File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180488#M162810</link>
      <description>I am trying to increase the space of my /home file system. I do the following:&lt;BR /&gt;lvextend -L 76 /dev/vg00/lvol4&lt;BR /&gt;then I do:&lt;BR /&gt;fsadm -F vxfs -b 77824 /home.&lt;BR /&gt;It comes back with the following error message:&lt;BR /&gt;vxfs fsadm: /dev/vg00/rlvol4 is currently 53248 sectors - size will be increased&lt;BR /&gt;vxfs fsadm: attempt to resize /dev/vg00/rlvol4 failed with errno 28&lt;BR /&gt;Also, I tried to remove some really large files from the file system. It looks like it removed them but there is still no space left. When I do a bdf I get the following:&lt;BR /&gt;/dev/vg00/lvol4      53248   53248       0  100% /home&lt;BR /&gt;There is an generous reward for anyone who can help me figure out the problem:)&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;-Hazem</description>
      <pubDate>Mon, 02 Feb 2004 14:04:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180488#M162810</guid>
      <dc:creator>Hazem Mahmoud_3</dc:creator>
      <dc:date>2004-02-02T14:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180489#M162811</link>
      <description>Most likely there is a open process that is connected to that file you tried to remove. Space will not be freed up until the process dies.&lt;BR /&gt;&lt;BR /&gt;fuser -cu /home&lt;BR /&gt;&lt;BR /&gt;to display the proceses&lt;BR /&gt;&lt;BR /&gt;caution:&lt;BR /&gt;&lt;BR /&gt;fuser -cuk /home&lt;BR /&gt;&lt;BR /&gt;to kill all processes on the /home filesystem.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 02 Feb 2004 14:09:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180489#M162811</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-02-02T14:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180490#M162812</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You will need to have some free space in the filesystem to use onlineJFS to extend the filesystem online.&lt;BR /&gt;&lt;BR /&gt;"Deleting largefiles" in /home should have freed up enough space for the fsadm to work. Looks like you deleted the files that are still open by the procesess.&lt;BR /&gt;&lt;BR /&gt;So, I would suggest you use lsof to find out the processes that have the these files opened and kill those processes. Or detele the files that are not opened by any of the processes. &lt;BR /&gt;&lt;BR /&gt;Once you get a little space freed, then  'fsadm' should work.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 02 Feb 2004 14:09:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180490#M162812</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-02T14:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180491#M162813</link>
      <description>Looks like you still have a process hanging on to one of the files you probably deleted.&lt;BR /&gt;&lt;BR /&gt;Use lsof to find out which process, and once that process dies, the space will be reallocated again, and you can then pursue with your fsadm command.&lt;BR /&gt;&lt;BR /&gt;The problem with fsadm is it need a little bit of space to work.</description>
      <pubDate>Mon, 02 Feb 2004 14:11:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180491#M162813</guid>
      <dc:creator>Marco Santerre</dc:creator>
      <dc:date>2004-02-02T14:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180492#M162814</link>
      <description>Ok, I tried that, found two processes, killed them and it is still giving me 100% and the same error message with the fsadm command.&lt;BR /&gt;&lt;BR /&gt;-Hazem</description>
      <pubDate>Mon, 02 Feb 2004 14:22:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180492#M162814</guid>
      <dc:creator>Hazem Mahmoud_3</dc:creator>
      <dc:date>2004-02-02T14:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180493#M162815</link>
      <description>Hi Hazem,&lt;BR /&gt;&lt;BR /&gt;You will need to use 'lsof' to really get the picture. Search the forums to know from where to get the lsof installed.&lt;BR /&gt;&lt;BR /&gt;lsof /home&lt;BR /&gt;&lt;BR /&gt;will show all the processes and their opened files.&lt;BR /&gt;&lt;BR /&gt;Try deleting|moving some more files to get atleast your fsadm working.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Feb 2004 14:26:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180493#M162815</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-02T14:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180494#M162816</link>
      <description>Well, I was able to delete more file, to free up enough space for fsadm and IT WORKED! Here is my question however, how come I didn't get the space back for the previous big files that I deleted when I was at 100%? Thanks!&lt;BR /&gt;&lt;BR /&gt;-Hazem</description>
      <pubDate>Mon, 02 Feb 2004 14:28:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180494#M162816</guid>
      <dc:creator>Hazem Mahmoud_3</dc:creator>
      <dc:date>2004-02-02T14:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180495#M162817</link>
      <description>Hi Hazem,&lt;BR /&gt;&lt;BR /&gt;That was because those files were opened by processes. As I said, you will get a good picture if you try 'lsof'. It's a must to have tool on the system along with 'tusc'.&lt;BR /&gt;&lt;BR /&gt;How much free space did you get?. Is it around 75 MB which is you added just now?. If so, then you still have those largefiles opened.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 02 Feb 2004 14:33:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180495#M162817</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-02T14:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180496#M162818</link>
      <description>&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.70/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.70/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;tusc is availble somewhere at &lt;A href="http://software.hp.com" target="_blank"&gt;http://software.hp.com&lt;/A&gt; or perhpas the ftp site.&lt;BR /&gt;&lt;BR /&gt;Installing lsof generates an error but the product is usable after install. The error is fixed by suid on the lsof binary and reinstalling.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 02 Feb 2004 14:40:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180496#M162818</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-02-02T14:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: File System Space...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180497#M162819</link>
      <description>When looking for space in home these might be handy.&lt;BR /&gt;&lt;BR /&gt;find -name /home core&lt;BR /&gt;*.gz&lt;BR /&gt;*.tar&lt;BR /&gt;&lt;BR /&gt;cd /home&lt;BR /&gt;du -sk * | sort -nr | head&lt;BR /&gt;&lt;BR /&gt;finds top offending users :).</description>
      <pubDate>Fri, 07 May 2004 22:14:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-system-space/m-p/3180497#M162819</guid>
      <dc:creator>generic_1</dc:creator>
      <dc:date>2004-05-07T22:14:54Z</dc:date>
    </item>
  </channel>
</rss>

