<?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: disk space full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443500#M357652</link>
    <description>Remove all the unwanted files &amp;amp; dir in /tmp.it will reduce ..If u want that files take a backup using fbackup &amp;amp; delete it.</description>
    <pubDate>Fri, 19 Jun 2009 18:44:32 GMT</pubDate>
    <dc:creator>fizan</dc:creator>
    <dc:date>2009-06-19T18:44:32Z</dc:date>
    <item>
      <title>disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443499#M357651</link>
      <description>Disk space used % /tmp 95.388200. Could any body tell how to solve this issue..Thanks in advance ..</description>
      <pubDate>Fri, 19 Jun 2009 18:27:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443499#M357651</guid>
      <dc:creator>gany59</dc:creator>
      <dc:date>2009-06-19T18:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443500#M357652</link>
      <description>Remove all the unwanted files &amp;amp; dir in /tmp.it will reduce ..If u want that files take a backup using fbackup &amp;amp; delete it.</description>
      <pubDate>Fri, 19 Jun 2009 18:44:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443500#M357652</guid>
      <dc:creator>fizan</dc:creator>
      <dc:date>2009-06-19T18:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443501#M357653</link>
      <description>hi &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;can do a &lt;BR /&gt;&lt;BR /&gt;#du -k /tmp | sort +n | pg&lt;BR /&gt;&lt;BR /&gt;have a look as per the file size and see if some of the files can be moved.&lt;BR /&gt;100 % full /tmp shall make the system un-bootable.&lt;BR /&gt;reagrds&lt;BR /&gt;sujit</description>
      <pubDate>Fri, 19 Jun 2009 19:04:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443501#M357653</guid>
      <dc:creator>sujit kumar singh</dc:creator>
      <dc:date>2009-06-19T19:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443502#M357654</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Re:  "...100 % full /tmp shall make the system un-bootable...", could the poster of this comment be a little more careful with his / her adivce giving.  This is such an obvious mistake I won't even comment on it.&lt;BR /&gt;&lt;BR /&gt;du -k /tmp | sort -rn | more (* is good for finding biggest to littlest file sizes *)&lt;BR /&gt;&lt;BR /&gt;ls -lart (* is good for get a chronological listing oldest to newest *)&lt;BR /&gt;&lt;BR /&gt;lsof /tmp (* is good for find running processes still writing to open files within the /tmp filesystem *)&lt;BR /&gt;&lt;BR /&gt;cd /tmp&lt;BR /&gt;touch /tmp/file_mfs&lt;BR /&gt;find /tmp -type f -newer /tmp/file_mfs -exec ll {} \;  (* is good for finding runnaway processes, or, hard to find children of killed parents still writing to a file system *)</description>
      <pubDate>Fri, 19 Jun 2009 19:18:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443502#M357654</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2009-06-19T19:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443503#M357655</link>
      <description>100% full /tmp does not make the system unbootable. It just causes some badly designed and authored software to malfunction or not work at all. &lt;BR /&gt;&lt;BR /&gt;you can sort /tmp by date&lt;BR /&gt;&lt;BR /&gt;cd /tmp&lt;BR /&gt;ls -lt | tail -50 &amp;gt; /var/tmp/oldtempfiles&lt;BR /&gt;&lt;BR /&gt;take say the oldest 50 files at the bottom&lt;BR /&gt;&lt;BR /&gt;for f in $(cat  /var/tmp/oldtempfiles)&lt;BR /&gt;do&lt;BR /&gt;fuser $f | awk {'print $1'} &amp;gt;/var/tmp/tfile.tmp&lt;BR /&gt;cat /var/tmp/tfile.tmp|grep -q ^[0-9]&lt;BR /&gt;r=${?}&lt;BR /&gt;if [ $r -ne 0 ]&lt;BR /&gt;then&lt;BR /&gt;echo "$f: file not open" # can be deleted&lt;BR /&gt;else&lt;BR /&gt;echo "$f: file open" # do nothing&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;But as always, use common sense before deleting people's files. They may get upset. Last thing you want to do, upset the assistant of the big boss.</description>
      <pubDate>Fri, 19 Jun 2009 19:23:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443503#M357655</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2009-06-19T19:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443504#M357656</link>
      <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;acknowledge the same.&lt;BR /&gt;regards&lt;BR /&gt;sujit&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Jun 2009 19:37:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443504#M357656</guid>
      <dc:creator>sujit kumar singh</dc:creator>
      <dc:date>2009-06-19T19:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443505#M357657</link>
      <description>&amp;gt;Mel: 100% full /tmp does not make the system unbootable.&lt;BR /&gt;&lt;BR /&gt;Then perhaps unusable.  There have been threads where a full / has caused the passwd file to be blasted if trying to edit it.&lt;BR /&gt;(I suppose this comes under your "badly designed" statement. ;-)</description>
      <pubDate>Sat, 20 Jun 2009 02:21:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443505#M357657</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-06-20T02:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443506#M357658</link>
      <description>The /tmp 100% does not make system unbootable.&lt;BR /&gt;&lt;BR /&gt;First of all go to &lt;BR /&gt;# cd /tmp&lt;BR /&gt;&lt;BR /&gt;check and core file or and log file, which we can immediatily delete or move from the /tmp. If by doing this some size is reduced do&lt;BR /&gt;&lt;BR /&gt;# du -sk *|sort -nr|more&lt;BR /&gt;&lt;BR /&gt;It will sort the file with maximum size, from which you can get the idea, which file (consuming more size) needs to be deleted.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this may help you</description>
      <pubDate>Sat, 20 Jun 2009 14:38:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443506#M357658</guid>
      <dc:creator>Pintu Bhagat</dc:creator>
      <dc:date>2009-06-20T14:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: disk space full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443507#M357659</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try to find core and any large old files that can be move to other lication--&lt;BR /&gt;&lt;BR /&gt;(1) find /tmp - name core*&lt;BR /&gt;&lt;BR /&gt;(2)cd /tmp&lt;BR /&gt; du * | sort -rn | head   sort the large file with its size in descending order &lt;BR /&gt;&lt;BR /&gt;(3)du -kx /tmp | sort -rn | more  ( Listing the large file in kb )&lt;BR /&gt;&lt;BR /&gt;(4)find . -xdev -type f -size + 100000 -exec ls lrt{}\+&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Subodh.</description>
      <pubDate>Mon, 22 Jun 2009 19:54:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-full/m-p/4443507#M357659</guid>
      <dc:creator>subodhbagade</dc:creator>
      <dc:date>2009-06-22T19:54:07Z</dc:date>
    </item>
  </channel>
</rss>

