<?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: Script to report user storage in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528916#M701410</link>
    <description>This becomes quite is easy, if you have implemented quotas on your system, else, you will have to find files/dirs owned by users and then calculate space used.-this is going to be cpu consuming task.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
    <pubDate>Wed, 20 Apr 2005 15:39:31 GMT</pubDate>
    <dc:creator>RAC_1</dc:creator>
    <dc:date>2005-04-20T15:39:31Z</dc:date>
    <item>
      <title>Script to report user storage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528915#M701409</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Does anyone know of a script out there that will report (therefore probably a perl script) the amout of storage each user is taking up on the system?  I am certain there would be something out there but I can't find anything.&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Wed, 20 Apr 2005 15:37:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528915#M701409</guid>
      <dc:creator>Coolmar</dc:creator>
      <dc:date>2005-04-20T15:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Script to report user storage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528916#M701410</link>
      <description>This becomes quite is easy, if you have implemented quotas on your system, else, you will have to find files/dirs owned by users and then calculate space used.-this is going to be cpu consuming task.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Wed, 20 Apr 2005 15:39:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528916#M701410</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-04-20T15:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Script to report user storage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528917#M701411</link>
      <description>If you are looking at just the home dirs,&lt;BR /&gt;&lt;BR /&gt;# cd /home&lt;BR /&gt;# du . -ka | sort -nr | more&lt;BR /&gt;&lt;BR /&gt;The will report file sizes and sort into ascending order (biggexst to smallest)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2005 15:45:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528917#M701411</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-04-20T15:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Script to report user storage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528918#M701412</link>
      <description>No, I want more than "home" and I want output in the form of a report:&lt;BR /&gt;&lt;BR /&gt;UserID     Space Used&lt;BR /&gt;&lt;BR /&gt;xxxxx      3456000Kb&lt;BR /&gt;&lt;BR /&gt;That type of thing.  I do not have quotas.  I have seen something that does this nicely in the past, but just can't find it.&lt;BR /&gt;&lt;BR /&gt;Thanks for the responses</description>
      <pubDate>Wed, 20 Apr 2005 15:55:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528918#M701412</guid>
      <dc:creator>Coolmar</dc:creator>
      <dc:date>2005-04-20T15:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Script to report user storage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528919#M701413</link>
      <description>Something as follows.&lt;BR /&gt;&lt;BR /&gt;ll -R /FS | grep user1 | awk '{size+=$5} END {printf "%d\n", "user", size}'&lt;BR /&gt;&lt;BR /&gt;you can use find, but be carefull this can hog CPU.&lt;BR /&gt;&lt;BR /&gt;find /FS_to_search -user user1 -exec ll -d {} \; | awk '{size+=$5} END {printf "%d\n", "user", size}'</description>
      <pubDate>Wed, 20 Apr 2005 16:07:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528919#M701413</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-04-20T16:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Script to report user storage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528920#M701414</link>
      <description>No such script exists by default. This would need to be created. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2005 16:08:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528920#M701414</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-04-20T16:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Script to report user storage</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528921#M701415</link>
      <description>Without quotas, you'll have to search for all user's files in the system. Implementing quotas in your system will be the erfect solution.</description>
      <pubDate>Wed, 20 Apr 2005 16:09:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-report-user-storage/m-p/3528921#M701415</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-04-20T16:09:46Z</dc:date>
    </item>
  </channel>
</rss>

