内容来源于人民邮电出版社《Linux命令应用大词典》
学习Linux系统的参考书、案头书,遇到不懂的命令或命令选项一查即可
争取每天都发布内容
本文出自 “airfish2000” 博客,更多命令查看博客:
http://airfish2000.blog.51cto.com/10829608/1889147
使用repquota命令可以显示指定文件系统的使用和配额的摘要,清楚的知道每一位用户或每一个组群已使用多少磁盘空间。
命令语法:
repquota [选项][文件系统]
命令中各选项的含义如表所示。
表 repquota命令选项含义
选项 | 含义 |
-a | 列出/etc/mtab文件中,有加入配额设置的分区使用状况,包括用户和组群 |
-g | 列出所有组群的磁盘空间限制 |
-u | 列出所有用户的磁盘空间限制 |
-v | 显示该用户或组群的所有空间限制 |
-s | 以MB、GB等方式显示 |
-p | 显示宽限时间 |
例:查看/home目录所在文件系统的配额摘要。
[root@rhel ~]# repquota /home
*** Report for user quotas on device /dev/sda5
Block grace time: 7days; Inode grace time: 7days
Block limits Filelimits
User used soft hard grace used soft hard grace
----------------------------------------------------------------------
root -- 20 0 0 2 0 0
zhangsan -+ 0 0 0 5 3 5 6days
sales -- 4 0 0 1 0 0
例:查看磁盘分区/dev/sda5所在文件系统的配额摘要。
[root@rhel ~]# repquota /dev/sda5
*** Report for user quotas on device /dev/sda5
Block grace time: 7days; Inode grace time: 7days
Block limits Filelimits
User used soft hard grace used soft hard grace
----------------------------------------------------------------------
root -- 20 0 0 2 0 0
zhangsan -+ 0 0 0 5 3 5 6days
sales -- 4 0 0 1 0 0
例:查看所有启用配额的文件系统的配额摘要。
[root@rhel ~]# repquota -a
*** Report for user quotas on device /dev/sda5
Block grace time: 7days; Inode grace time: 7days
Block limits Filelimits
User used soft hard grace used soft hard grace
----------------------------------------------------------------------
root -- 20 0 0 2 0 0
zhangsan -+ 0 0 0 5 3 5 6days
sales -- 4 0 0 1 0 0
本文出自 “airfish2000” 博客,请务必保留此出处http://airfish2000.blog.51cto.com/10829608/1889147
repquota命令--Linux命令应用大词典729个命令解读
原文地址:http://airfish2000.blog.51cto.com/10829608/1889147