<?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 mount point usage in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635980#M379014</link>
    <description>Hi Admins,&lt;BR /&gt;&lt;BR /&gt;My one of the mountpoint disk usage suddenly increased.How can i find out which are the filesizes suddenly increased through script&lt;BR /&gt;&lt;BR /&gt;please suggets on this&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;himacs</description>
    <pubDate>Mon, 24 May 2010 05:02:14 GMT</pubDate>
    <dc:creator>himacs</dc:creator>
    <dc:date>2010-05-24T05:02:14Z</dc:date>
    <item>
      <title>mount point usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635980#M379014</link>
      <description>Hi Admins,&lt;BR /&gt;&lt;BR /&gt;My one of the mountpoint disk usage suddenly increased.How can i find out which are the filesizes suddenly increased through script&lt;BR /&gt;&lt;BR /&gt;please suggets on this&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;himacs</description>
      <pubDate>Mon, 24 May 2010 05:02:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635980#M379014</guid>
      <dc:creator>himacs</dc:creator>
      <dc:date>2010-05-24T05:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: mount point usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635981#M379015</link>
      <description>we no need use script , we can try using some commands to start checking.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cd /mount_point&lt;BR /&gt;du -sk *</description>
      <pubDate>Mon, 24 May 2010 05:05:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635981#M379015</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2010-05-24T05:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: mount point usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635982#M379016</link>
      <description>Hi Johnson,&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply..&lt;BR /&gt;&lt;BR /&gt;Actually i want know which are the files recently updated .Instead of checking each and every folder i thought script will be useful.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;himacs</description>
      <pubDate>Mon, 24 May 2010 05:35:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635982#M379016</guid>
      <dc:creator>himacs</dc:creator>
      <dc:date>2010-05-24T05:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: mount point usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635983#M379017</link>
      <description>#cd &lt;ENTER to="" that="" directory=""&gt;&lt;BR /&gt;#find . -xdev -size +1000000 -exec ls -lrt {} \;&lt;BR /&gt;&lt;BR /&gt;you can modify the linit(1000000).&lt;BR /&gt;Regards,&lt;BR /&gt;Ani&lt;/ENTER&gt;</description>
      <pubDate>Mon, 24 May 2010 05:53:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635983#M379017</guid>
      <dc:creator>ani007</dc:creator>
      <dc:date>2010-05-24T05:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: mount point usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635984#M379018</link>
      <description>I use this script to find the large file with date attached to it.</description>
      <pubDate>Mon, 24 May 2010 13:22:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635984#M379018</guid>
      <dc:creator>Tingli</dc:creator>
      <dc:date>2010-05-24T13:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: mount point usage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635985#M379019</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;You might begin with:&lt;BR /&gt;&lt;BR /&gt;# find /path -xdev -type f -mtime -3 -exec ls -ld {} +&lt;BR /&gt;&lt;BR /&gt;This will find files which have been modified during the last three days.&lt;BR /&gt;&lt;BR /&gt;You could also look at the largest directories:&lt;BR /&gt;&lt;BR /&gt;# du -xk /path|sort -rnk1,1&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 24 May 2010 13:30:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-usage/m-p/4635985#M379019</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-05-24T13:30:05Z</dc:date>
    </item>
  </channel>
</rss>

