• 拾遗:『ext4 Quota』


    一、关闭selinux

    [root@6 home]# sestatus -v
    SELinux status:                 disabled
    示例:临时关闭
    [root@6 home]# setenforce 0
    示例:永久关闭
    [root@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

    六、查看配额报告/状态

    [root@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
  • 相关阅读:
    CentOs上安装Oracle 10g
    多线程更新form
    C#中写INI文件的方法
    C语言的函数大全,参数列表,数字的81016进制转换
    CCS 3.3 操作C函数读写文件
    关于XML文档读写
    关于MathType的一些用法
    DateTime Proc
    拖拽获得文件路径
    用事件进行窗口间参数传递
  • 原文地址:https://www.cnblogs.com/hadex/p/5825145.html
Copyright © 2020-2023  润新知