<?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: /usr is closed to 90% full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720779#M63111</link>
    <description>Use find command to find core file&lt;BR /&gt;&lt;BR /&gt;#find /usr -name core -print&lt;BR /&gt;&lt;BR /&gt;to find a file of 10000000byte = 10MB or larger&lt;BR /&gt;&lt;BR /&gt;#find /usr -type f -size -10000000c -exec ls -la {} \;&lt;BR /&gt;&lt;BR /&gt;Sachin</description>
    <pubDate>Thu, 09 May 2002 17:19:19 GMT</pubDate>
    <dc:creator>Sachin Patel</dc:creator>
    <dc:date>2002-05-09T17:19:19Z</dc:date>
    <item>
      <title>/usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720776#M63108</link>
      <description>What files under /usr can I safely delete?&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;T. SIM</description>
      <pubDate>Thu, 09 May 2002 16:57:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720776#M63108</guid>
      <dc:creator>Teck Sim</dc:creator>
      <dc:date>2002-05-09T16:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720777#M63109</link>
      <description>1.  Make sure you have a backup.&lt;BR /&gt;&lt;BR /&gt;2.  Anything under /usr/tmp is probably fair game.&lt;BR /&gt;&lt;BR /&gt;3.  The same should be true for /usr/examples.&lt;BR /&gt;&lt;BR /&gt;Anything else is probably risky.&lt;BR /&gt;&lt;BR /&gt;Check for core or large user files that may have snuck in.&lt;BR /&gt;&lt;BR /&gt;Other than that, you'll probably need to enlarge it.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 09 May 2002 17:06:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720777#M63109</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-05-09T17:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720778#M63110</link>
      <description>If you look closely ..&lt;BR /&gt;# ls -l /usr|grep -e "-&amp;gt;"&lt;BR /&gt;there are some sym link directories that goes to /var&lt;BR /&gt;like /var/mail; /var/spool.. at least on my machine. That leaves nothing much behind for you to house keep.&lt;BR /&gt;&lt;BR /&gt;- /usr/tmp&lt;BR /&gt;&lt;BR /&gt;is about all I would cleanup. &lt;BR /&gt;&lt;BR /&gt;You would want to do 2 things though ..&lt;BR /&gt;# cd /usr&lt;BR /&gt;# find . -name core -exec ls -l {} \;&lt;BR /&gt;==&amp;gt; list core files and if found remove them.&lt;BR /&gt;# find . -size +2000000c -exec ls -l {} \;&lt;BR /&gt;==&amp;gt; find out if you have any files bigger than 2MB (just an example) and see if those files really does belong here.&lt;BR /&gt;&lt;BR /&gt;Other than that . 1 option&lt;BR /&gt;- extend /usr&lt;BR /&gt;You do not want to be moving system directories/files from /usr to some other location and create sym link to it.</description>
      <pubDate>Thu, 09 May 2002 17:18:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720778#M63110</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-05-09T17:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720779#M63111</link>
      <description>Use find command to find core file&lt;BR /&gt;&lt;BR /&gt;#find /usr -name core -print&lt;BR /&gt;&lt;BR /&gt;to find a file of 10000000byte = 10MB or larger&lt;BR /&gt;&lt;BR /&gt;#find /usr -type f -size -10000000c -exec ls -la {} \;&lt;BR /&gt;&lt;BR /&gt;Sachin</description>
      <pubDate>Thu, 09 May 2002 17:19:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720779#M63111</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2002-05-09T17:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720780#M63112</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would first try to find out which files are taking up space in /usr&lt;BR /&gt;&lt;BR /&gt;cd /usr&lt;BR /&gt;ls -lR | grep "^-" | sort -nr -k 5 | more&lt;BR /&gt;&lt;BR /&gt;will list biggest first and so on ...&lt;BR /&gt;&lt;BR /&gt;Hope this helps !&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shabu</description>
      <pubDate>Thu, 09 May 2002 17:31:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720780#M63112</guid>
      <dc:creator>SHABU KHAN</dc:creator>
      <dc:date>2002-05-09T17:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720781#M63113</link>
      <description>You can do:&lt;BR /&gt;   cd /usr; du -kx | sort -rn | more&lt;BR /&gt;&lt;BR /&gt;This will show you usage by directory in the file system /usr.&lt;BR /&gt;&lt;BR /&gt;If you need to exend /usr and it is a hfs file system, you will have to shut the box down complely, then boot in single user mode. Do a mount /usr; umount /usr, then do your extend and extendfs.&lt;BR /&gt;&lt;BR /&gt;You can't just shutdown to single user mode. There are processes still running that use /usr.</description>
      <pubDate>Thu, 09 May 2002 20:20:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720781#M63113</guid>
      <dc:creator>Martin Johnson</dc:creator>
      <dc:date>2002-05-09T20:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720782#M63114</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Analysing /usr is a little different to some of&lt;BR /&gt;the other filesystems. You must rememeber that&lt;BR /&gt;some of the directories underneath here actually belong to /var and they are shown as symbolic links.&lt;BR /&gt;&lt;BR /&gt;What I would do is actually look for any large files first as suggested, but look at how the&lt;BR /&gt;filesystem has grown. Since /usr generally does&lt;BR /&gt;not grow very much, now is the time to look at&lt;BR /&gt;planning to increase it. If you have a copy of the On-Line JFS software loaded, you can increase this on the fly. (Assuming JFS) If not&lt;BR /&gt;you will need an outage regardles.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;~Michael~</description>
      <pubDate>Thu, 09 May 2002 23:42:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720782#M63114</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-05-09T23:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720783#M63115</link>
      <description>In most circumstances /usr is fairly static and should not surprise you by growing rapidly.&lt;BR /&gt;&lt;BR /&gt;Unless you need more space to install a patch or to install a new application then I would leave it alone.&lt;BR /&gt;&lt;BR /&gt;Another thing to consider is the number of megabytes (shown as kb in bdf) free. This is a more important value than % free.&lt;BR /&gt;&lt;BR /&gt;My 2c discalimer applies</description>
      <pubDate>Thu, 09 May 2002 23:58:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720783#M63115</guid>
      <dc:creator>Trevor Dyson</dc:creator>
      <dc:date>2002-05-09T23:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: /usr is closed to 90% full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720784#M63116</link>
      <description>Thanks to all of you, all the info. has been very helpful.&lt;BR /&gt;</description>
      <pubDate>Fri, 10 May 2002 12:05:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-is-closed-to-90-full/m-p/2720784#M63116</guid>
      <dc:creator>Teck Sim</dc:creator>
      <dc:date>2002-05-10T12:05:40Z</dc:date>
    </item>
  </channel>
</rss>

