欢迎来到冘冗的博客

个性签名:世上只有想不通的人,没有走不通的路。

Linux磁盘配额(xfs)

这是在上篇磁盘管理下完成的

配置开机自启配置配额权限

/dev/sdb2 /part-xfs xfs defaults,uquota,gquopa 0 0

创建用户

[root@localhost ~]# useradd tom

设置配额

[root@localhost ~]# xfs_quota -x -c "limit bsoft=8M bhard=10M isoft=2 ihard=3 tom" /part-xfs/

设置用户权限

[root@localhost ~]# chmod 1777 /part-xfs/

验证

复制代码
[tom@localhost part-xfs]$ ll -h
total 0
[tom@localhost part-xfs]$ dd if=/dev/zero of=/part-xfs bs=11M count=1
dd: failed to open ‘/part-xfs’: Is a directory
[tom@localhost part-xfs]$ dd if=/dev/zero of=/part-xfs/test bs=11M count=1
dd: error writing ‘/part-xfs/test’: Disk quota exceeded
1+0 records in
0+0 records out
8388608 bytes (8.4 MB) copied, 0.426546 s, 19.7 MB/s
[tom@localhost part-xfs]$ 
复制代码

 



如果您觉得阅读本文对您有帮助,请点一下“推荐”按钮,您的“推荐”将是我最大的写作动力!欢迎各位转载,但是未经作者本人同意,转载文章之后必须在文章页面明显位置给出作者和原文连接,否则保留追究法律责任的权利。
posted @   冘冗  阅读(329)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示