Linux基本功杂记——[020]——『ext4 Quota』
Posted 纯原创,零转载
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux基本功杂记——[020]——『ext4 Quota』相关的知识,希望对你有一定的参考价值。
一、关闭selinux
[[email protected]6 home]# sestatus -v SELinux status: disabled 示例:临时关闭 [[email protected]6 home]# setenforce 0 示例:永久关闭 [[email protected]6 home]# vi /etc/selinux/config SELINUX=disabled
二、在/etc/fstab中添加usrquota、grpquota挂载参数
/dev/mapper/VolGroup-lv_home /home ext4 defaults,usrquota,grpquota 1 2
三、使用quotacheck扫描创建配置文件
# quotacheck -avug
四、使用edquota编辑配置文件
编辑指定用户/组的配额 # edquota -u username/-g groupname 更改超额宽限期 # edquota -t
五、开启/关闭quota
全部开启/关闭 # quotaon/quotaoff -avug 指定user/group关闭 # quotaon/quotaoff -u USERNAME/-g GROUPNAME
六、查看配额报告/状态
[[email protected]6 home]# repquota -avugs *** Report for user quotas on device /dev/mapper/VolGroup-lv_home Block grace time: 7days; Inode grace time: 7days Block limits File limits User used soft hard grace used soft hard grace ---------------------------------------------------------------------- root -- 20 0 0 2 0 0 test -- 16 0 0 4 0 0 Statistics: Total blocks: 7 Data blocks: 1 Entries: 2 Used average: 2.000000 *** Report for group quotas on device /dev/mapper/VolGroup-lv_home Block grace time: 7days; Inode grace time: 7days Block limits File limits Group used soft hard grace used soft hard grace ---------------------------------------------------------------------- root -- 20 0 0 2 0 0 test -- 16 0 0 4 0 0 Statistics: Total blocks: 7 Data blocks: 1 Entries: 2 Used average: 2.000000
以上是关于Linux基本功杂记——[020]——『ext4 Quota』的主要内容,如果未能解决你的问题,请参考以下文章
《Linux杂记》Window读取 Ext3/Ext4文件系统数据
Linux基本功杂记——[018]——『Network Bonding』
Linux基本功杂记——[013]——『mdadm Raid & LVM』