|
|||||||||||||||||||
1. Managing Terminals and Modems (Overview) 2. Setting Up Terminals and Modems (Tasks) 3. Managing Serial Ports With the Service Access Facility (Tasks) 4. Managing System Resources (Overview) 5. Displaying and Changing System Information (Tasks) How to Configure File Systems for Quotas How to Set Up Quotas for a User How to Set Up Quotas for Multiple Users How to Check for Exceeded Quotas How to Check Quotas on a File System How to Change the Soft Limit Default How to Change Quotas for a User How to Disable Quotas for a User 8. Scheduling System Tasks (Tasks) 9. Managing System Accounting (Tasks) 10. System Accounting (Reference) 11. Managing System Performance (Overview) 12. Managing System Processes (Tasks) 13. Monitoring System Performance (Tasks) 14. Troubleshooting Software Problems (Overview) 16. Managing Core Files (Tasks) 17. Managing System Crash Information (Tasks) 18. Troubleshooting Miscellaneous Software Problems (Tasks) 19. Troubleshooting File Access Problems (Tasks) 20. Resolving UFS File System Inconsistencies (Tasks) |
Setting Up Quotas (Task Map)
How to Configure File Systems for Quotas
The following /etc/vfstab example shows that the /export/home directory from the system pluto is mounted as an NFS file system on the local system. You can tell that quotas are enabled by the rq entry under the mount options column. # device device mount FS fsck mount mount # to mount to fsck point type pass at boot options # pluto:/export/home - /export/home nfs - yes rq The following example line from the /etc/vfstab file shows that the local /work directory is mounted with quotas enabled, signified by the rq entry under the mount options column. #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options #/dev/dsk/c0t4d0s0 /dev/rdsk/c0t4d0s0 /work ufs 3 yes rq See AlsoHow to Set Up Quotas for a User
The following example shows the contents of the temporary file opened by edquota on a system where /files is the only mounted file system that contains a quotas file in the root directory. fs /files blocks (soft = 0, hard = 0) inodes (soft = 0, hard = 0) The following example shows the same line in the temporary file after quotas have been set up. fs /files blocks (soft = 50, hard = 60) inodes (soft = 90, hard = 100) How to Set Up Quotas for Multiple Users
The following example shows how to apply the quotas established for user bob to users mary and john. # edquota -p bob mary john How to Check Quota ConsistencyThe quotacheck command is run automatically when a system is rebooted. You generally do not have to run the quotacheck command on an empty file system with quotas. However, if you are setting up quotas on a file system with existing files, you need to run the quotacheck command to synchronize the quota database with the files or inodes that already exist in the file system. Also keep in mind that running the quotacheck command on large file systems can be time-consuming. Note - To ensure accurate disk data, the file systems being checked should be quiescent when you run the quotacheck command manually.
The following example shows how to check quotas for the /export/home file system on the /dev/rdsk/c0t0d0s7 slice. The /export/home file system is the only file system with an rq entry in the /etc/vfstab file. # quotacheck -va *** Checking quotas for /dev/rdsk/c0t0d0s7 (/export/home) How to Turn On Quotas
The following example shows how to turn quotas on for the file systems on the /dev/dsk/c0t4d0s7 and /dev/dsk/c0t3d0s7 slices. # quotaon -v /dev/dsk/c0t4d0s7 /dev/dsk/c0t3d0s7 /dev/dsk/c0t4d0s7: quotas turned on /dev/dsk/c0t3d0s7: quotas turned on |
||||||||||||||||||
|