<?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 has grown 20% since Friday in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136377#M451379</link>
    <description>Thanks Adam.....that at least gave me some more idea's to look.  When I search user for really big files, I'm still getting nothing bigger than 10 MB or so.  &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 20 Oct 2008 14:05:24 GMT</pubDate>
    <dc:creator>Patrick Scherrer</dc:creator>
    <dc:date>2008-10-20T14:05:24Z</dc:date>
    <item>
      <title>/usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136373#M451375</link>
      <description>My /usr filesystem has grown about 20% since friday.  du -sk or searching /usr -size +10000 hasn't revealed any clues to help solve the problem.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Oct 2008 13:01:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136373#M451375</guid>
      <dc:creator>Patrick Scherrer</dc:creator>
      <dc:date>2008-10-20T13:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136374#M451376</link>
      <description>Search for recently modified:&lt;BR /&gt;&lt;BR /&gt;find /usr -mtime -1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 20 Oct 2008 13:04:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136374#M451376</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2008-10-20T13:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136375#M451377</link>
      <description>That simply yields a couple of files that temporarily store output from some scheduled jobs.  Small stuff in /usr/local/bin</description>
      <pubDate>Mon, 20 Oct 2008 13:06:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136375#M451377</guid>
      <dc:creator>Patrick Scherrer</dc:creator>
      <dc:date>2008-10-20T13:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136376#M451378</link>
      <description>Patrick,&lt;BR /&gt;   I love referencing this I use it A LOT!!!!&lt;BR /&gt;&lt;BR /&gt;To remove dated files. Can be modified to remove sized files as well.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# touch -amt 200504150000 /tmp/ref1&lt;BR /&gt;# touch -amt 200802282359 /tmp/ref2&lt;BR /&gt;&lt;BR /&gt;# find /opt/mtmc/ibs/import/reject -xdev -type f -newer /tmp/ref1 -a ! -newer /tmp/ref2 -exec rm {} \+&lt;BR /&gt;&lt;BR /&gt;This will remove files that are newer (more recently modified) than April 15 at 0000 AND NOT newer than Feb, 28th 2359 of this year, modofy the times as needed, here is a bit of a guide.&lt;BR /&gt;&lt;BR /&gt;time Use the specified time instead of the current time.&lt;BR /&gt;The option argument is a decimal number of the form&lt;BR /&gt;&lt;BR /&gt;[[CC]YY]MMDDhhmm[.SS]&lt;BR /&gt;&lt;BR /&gt;where each two digits represents the following:&lt;BR /&gt;&lt;BR /&gt;CC The first two digits of the year.&lt;BR /&gt;&lt;BR /&gt;YY The second two digits of the year.&lt;BR /&gt;&lt;BR /&gt;MM The month of the year (01-12).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;OR some other useful ones are:&lt;BR /&gt;&lt;BR /&gt;1. find /usr -xdev -depth -size +7000 â  xdev -exec ll {} \; | more&lt;BR /&gt;(finds files larger than 7000k)&lt;BR /&gt;&lt;BR /&gt;2. find /usr -type f -size +1000000c -xdev -exec ls -l {} \;&lt;BR /&gt;(if you want to search for a number of characters try the lower case c after the number)&lt;BR /&gt;OR&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3.find /usr -xdev -size +1000000c -exec ll {} \; &lt;BR /&gt;(searches for directories as well as files.)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Oct 2008 13:19:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136376#M451378</guid>
      <dc:creator>Adam W.</dc:creator>
      <dc:date>2008-10-20T13:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136377#M451379</link>
      <description>Thanks Adam.....that at least gave me some more idea's to look.  When I search user for really big files, I'm still getting nothing bigger than 10 MB or so.  &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Oct 2008 14:05:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136377#M451379</guid>
      <dc:creator>Patrick Scherrer</dc:creator>
      <dc:date>2008-10-20T14:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136378#M451380</link>
      <description>Patrick,&lt;BR /&gt;&lt;BR /&gt;I have to wonder if there was a file, now deleted, that the space has not been given back yet.  You can use lsof to find such a thing:  # lsof +L1 &lt;BR /&gt;&lt;BR /&gt;Take a look at this thread:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1129437" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1129437&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 20 Oct 2008 14:14:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136378#M451380</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2008-10-20T14:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136379#M451381</link>
      <description>A number of database processes that had been launched as part of a batch were hung up.  &lt;BR /&gt;&lt;BR /&gt;lsof helpded me clean up the processes which immediately freed things up.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 20 Oct 2008 16:10:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136379#M451381</guid>
      <dc:creator>Patrick Scherrer</dc:creator>
      <dc:date>2008-10-20T16:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136380#M451382</link>
      <description>Problem solved thanks!</description>
      <pubDate>Mon, 20 Oct 2008 16:11:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136380#M451382</guid>
      <dc:creator>Patrick Scherrer</dc:creator>
      <dc:date>2008-10-20T16:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: /usr has grown 20% since Friday</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136381#M451383</link>
      <description>Patrick,&lt;BR /&gt;&lt;BR /&gt;I would take a long, hard look at those processes.  It just doesn't seem right to me that they're writing to /usr - far more appropriate would be /var/tmp or something similar.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 20 Oct 2008 16:24:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/usr-has-grown-20-since-friday/m-p/5136381#M451383</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2008-10-20T16:24:55Z</dc:date>
    </item>
  </channel>
</rss>

