You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

quotacheck
===
检查磁盘的使用空间与限制
## 说明
**quotacheck命令** 通过扫描指定的文件系统获取磁盘的使用情况创建、检查和修复磁盘配额quota文件。执行quotacheck指令扫描挂入系统的分区并在各分区的文件系统根目录下产生quota.user和quota.group文件设置用户和群组的磁盘空间限制
## 选项
```
quotacheck(选项)(参数)
```
```
-a扫描在/etc/fstab文件里有加入quota设置的分区
-d详细显示指令执行过程便于排错或了解程序执行的情形
-g扫描磁盘空间时计算每个群组识别码所占用的目录和文件数目
-R排除根目录所在的分区
-u扫描磁盘空间时计算每个用户识别码所占用的目录和文件数目
-v显示指令执行过程
```
### 参数
文件系统:指定要扫描的文件系统
## 实例
将所有的在`/etc/mtab`内含有quota支持的partition进行扫描
```
[root@linux ~]# quotacheck -avug
quotacheck: Scanning /dev/hdb1 [/disk2] done
quotacheck: Checked 3 directories and 4 files
```
强制扫描已挂载的filesystem
```
[root@linux ~]# quotacheck -avug -m
```