Debian Lenny如何设置日记帐配额
版本1.0
作者:Falko Timme
本教程将介绍如何在Debian Lenny系统上设置日记帐配额。 使用日志配额,在不清洁的关机后,您不需要执行配额检查。 日志配额在ext3和ext4文件系统上工作。
我不会保证这将为您工作!
1初步说明
如果您设置了“正常”的配置方式(例如,在 )第9章中所示,您可能会看到以下警告:
quotacheck: Your kernel probably supports journaled quota but you are not using it. Consider switching to journaled quota to avoid running quotacheck after an unclean shutdown.
这是您如何设置日记帐配额:
2期刊配额
要安装配额,请运行
aptitude install quota
编辑/ etc / fstab
。 将usrjquota = aquota.user,grpjquota = aquota.group,jqfmt = vfsv0
添加到要使用配额的分区。 我看起来像这样(我想在/
partition上使用配额):
vi /etc/fstab
# /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 /dev/sda1 / ext3 errors=remount-ro,usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0 0 1 /dev/sda5 none swap sw 0 0 /dev/hda /media/cdrom0 udf,iso9660 user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 |
要启用配额,请运行以下命令:
touch /aquota.user /aquota.group
chmod 600 /aquota.*
mount -o remount /
quotacheck -avugm
quotaon -avug
就是这样 - 现在启用了配额配额。
3链接
- Debian: http : //www.debian.org/