- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: who is using the space
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2000 01:32 AM
тАО08-16-2000 01:32 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2000 01:32 AM
тАО08-16-2000 01:32 AM
Re: who is using the space
Is this what you require?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2000 01:34 AM
тАО08-16-2000 01:34 AM
Solutiondiskusg /dev/vgxx/lvolxx | sort -nbk 3
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;
diskusg /dev/vg00/lvol5 | sort -nbk 3
108 tvt1 2945
109 tvt2 100223
user tvt2 is actually using 50Megabytes and tvt1 only 1.5Mb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2000 01:34 AM
тАО08-16-2000 01:34 AM
Re: who is using the space
cd /home
du -sk *
If not, then it's hard work.
You'd need a script to do a find and then add up the info.
or you could turn quota's on to do it for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2000 01:39 AM
тАО08-16-2000 01:39 AM
Re: who is using the space
du | sort -nr | more
shows you all files sorted by the size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-16-2000 01:47 AM
тАО08-16-2000 01:47 AM
Re: who is using the space
Use the quot command. See the man pages. 'quot' gives a good summary by user (account).
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-21-2000 08:23 PM
тАО08-21-2000 08:23 PM
Re: who is using the space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-22-2000 12:44 AM
тАО08-22-2000 12:44 AM
Re: who is using the space
Diskusg vor HFS and vsdiskusg vor FXFS-filesystems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2000 09:24 PM
тАО09-19-2000 09:24 PM
Re: who is using the space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2000 06:23 AM
тАО09-20-2000 06:23 AM
Re: who is using the space
diskusg ( all the mounted systems ) >> filename
then again use diskusg -s filename | sort +2n -r
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 .
Example in the man pages of diskusg does the same.