1。创建用户:
# useradd diskhog
passwd diskhog -->>redhat
2。为 /home 激活用户配额
vim /etc/fstab
LABEL=/home /home ext3 defaults,usrquota 1 2
mount -o remount /home (重新激活挂载选项)
init 1 (将系统引导至但用户模式,来确定正确的配额计算。)
quotacheck -cu /home (创建配额)
init 5 (离开单用户模式)
quotaon /home (启动配额)
setquota -u diskhog 512 1024 0 0 /home (将用户 diskhog 的软块配额设定为 512个1k的块,硬配额限制设定为 1024个1看到块。)
su - diskhog (用diskhog用户登录检测)
quota
dd if=/dev/zero f=bigfile bs=1k count=400 (应该没有问题)
dd if=/dev/zero f=bigfile bs=1k count=800 (应该有警告提示)
quota
dd if=/dev/zero f=bigfile bs=1k count=1600 (应该无法成功写入整个文件)
quota
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/21021875/viewspace-620870/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/21021875/viewspace-620870/