<?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: who is using the space in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436872#M5488</link>
    <description>use quot &lt;FILE system="" name=""&gt;&lt;BR /&gt;&lt;/FILE&gt;</description>
    <pubDate>Tue, 22 Aug 2000 03:23:19 GMT</pubDate>
    <dc:creator>R D SUNDAR RAJAN</dc:creator>
    <dc:date>2000-08-22T03:23:19Z</dc:date>
    <item>
      <title>who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436866#M5482</link>
      <description>I want to search all the way down/through a large filesystem and total up who is using how much space. How to do it ?</description>
      <pubDate>Wed, 16 Aug 2000 08:32:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436866#M5482</guid>
      <dc:creator>Carol Garrett</dc:creator>
      <dc:date>2000-08-16T08:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436867#M5483</link>
      <description>du -k &lt;DIRECTORY name=""&gt; will give you a list subdirectories and how big they are in kilobytes.&lt;BR /&gt;&lt;BR /&gt;Is this what you require?&lt;/DIRECTORY&gt;</description>
      <pubDate>Wed, 16 Aug 2000 08:32:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436867#M5483</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2000-08-16T08:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436868#M5484</link>
      <description>&lt;BR /&gt;diskusg /dev/vgxx/lvolxx | sort -nbk 3&lt;BR /&gt;&lt;BR /&gt;This will give you a list of all userids and how many blocks they are using throughout the lvol/filesystem. The size is in 512byte blocks so divide by 2 for size in K, eg;&lt;BR /&gt;&lt;BR /&gt;diskusg /dev/vg00/lvol5 | sort -nbk 3&lt;BR /&gt;&lt;UID&gt; &lt;USERID&gt; &lt;SIZE in="" blocks=""&gt;&lt;BR /&gt;108       tvt1              2945&lt;BR /&gt;109       tvt2              100223&lt;BR /&gt;&lt;BR /&gt;user tvt2 is actually using 50Megabytes and tvt1 only 1.5Mb&lt;BR /&gt;&lt;/SIZE&gt;&lt;/USERID&gt;&lt;/UID&gt;</description>
      <pubDate>Wed, 16 Aug 2000 08:34:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436868#M5484</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2000-08-16T08:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436869#M5485</link>
      <description>If all the files are under the users own directories, then just do :-&lt;BR /&gt;&lt;BR /&gt;cd /home&lt;BR /&gt;du -sk *&lt;BR /&gt;&lt;BR /&gt;If not, then it's hard work. &lt;BR /&gt;&lt;BR /&gt;You'd need a script to do a find and then add up the info.&lt;BR /&gt;&lt;BR /&gt;or you could turn quota's on to do it for you.</description>
      <pubDate>Wed, 16 Aug 2000 08:34:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436869#M5485</guid>
      <dc:creator>Andy Monks</dc:creator>
      <dc:date>2000-08-16T08:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436870#M5486</link>
      <description>May be it's not the most sophisticate way, but a:&lt;BR /&gt;du | sort -nr | more&lt;BR /&gt;&lt;BR /&gt;shows you all files sorted by the size&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Aug 2000 08:39:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436870#M5486</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2000-08-16T08:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436871#M5487</link>
      <description>Carol:&lt;BR /&gt;&lt;BR /&gt;Use the quot command.  See the man pages. 'quot' gives a good summary by user (account).&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 16 Aug 2000 08:47:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436871#M5487</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-08-16T08:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436872#M5488</link>
      <description>use quot &lt;FILE system="" name=""&gt;&lt;BR /&gt;&lt;/FILE&gt;</description>
      <pubDate>Tue, 22 Aug 2000 03:23:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436872#M5488</guid>
      <dc:creator>R D SUNDAR RAJAN</dc:creator>
      <dc:date>2000-08-22T03:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436873#M5489</link>
      <description>Please note you can use diskusg and vxdiskusg for accumulating diskspace per user.&lt;BR /&gt;Diskusg vor HFS and vsdiskusg vor FXFS-filesystems.&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Aug 2000 07:44:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436873#M5489</guid>
      <dc:creator>Maarten van Maanen</dc:creator>
      <dc:date>2000-08-22T07:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436874#M5490</link>
      <description>You can use find command with -size n , -atime n and -mtime n option to check larger  file creation  in specific period and you can also use for du command.</description>
      <pubDate>Wed, 20 Sep 2000 04:24:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436874#M5490</guid>
      <dc:creator>Mr Amir Mujtabain</dc:creator>
      <dc:date>2000-09-20T04:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: who is using the space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436875#M5491</link>
      <description>Use diskusg ( vxdisusg for vxfs ) file systems .&lt;BR /&gt;&lt;BR /&gt;diskusg ( all the mounted systems ) &amp;gt;&amp;gt; filename&lt;BR /&gt;&lt;BR /&gt;then again use diskusg -s filename | sort +2n -r &lt;BR /&gt;&lt;BR /&gt;this will give the output in descending order . One intresting feature is to use diskusg -s command again on the file as it adds up all the space for  same users on different file systems .&lt;BR /&gt;&lt;BR /&gt;Example in the man pages of diskusg does the same.</description>
      <pubDate>Wed, 20 Sep 2000 13:23:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/who-is-using-the-space/m-p/2436875#M5491</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2000-09-20T13:23:50Z</dc:date>
    </item>
  </channel>
</rss>

