- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- disk quota for user accounts
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
Forums
Discussions
Discussions
Discussions
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
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
06-03-2003 04:00 AM
06-03-2003 04:00 AM
how do I restrict each user to
fixed disk size, say 2GB per user account?
TIA
satya
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 04:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 04:06 AM
06-03-2003 04:06 AM
Re: disk quota for user accounts
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90672/B2355-90672_top.html&con=/hpux/onlinedocs/B2355-90672/00/00/52-con.html&toc=/hpux/onlinedocs/B2355-90672/00/00/52-toc.html&searchterms=edquota%7cfstab%7cquotaon&queryid=20030603-060321
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x9ed07680e012d71190050090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 05:01 AM
06-03-2003 05:01 AM
Re: disk quota for user accounts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 05:18 AM
06-03-2003 05:18 AM
Re: disk quota for user accounts
Keep in mind you fix a quota to users on a filesystem not on total disk space the box has...
you could create different quota model account and then use them:
1) Activate the quota file:
cpset /dev/null /users/quotas 600 root bin
2) Create a model quota:
edquota berridge
This will invoke vi, that you will have to modify:
fs /users blocks (soft=0 hard=0) inodes (soft=0 hard=0 )
e.g.:
fs /users blocks (soft = 15000, hard = 20000) inodes (soft = 260, hard = 320)
3) To use the quota just fixed for the users
edquota -p berridge
4) quotaon -v /home
Dont forget:
At next reboot the quota will end unless you
Modify in /etc/fstab the line like this
/dev/vg00/lvol8 /home hfs rw, suid, quota 0 2
-
All the best
Victor