编辑 /etc/fstab 添加配额限制

编辑 /etc/fstab 添加配额限制

因此,我一直尝试编辑 /etc/fstab 文件以添加“usrquota”,但是我尝试编辑它并且它失败了之后我应该按照本指南操作的任何命令(vsftpd 中的配额?),此系统是一台只有一个驱动器的 VPS,运行的是 CentOS

当前内容(原始)

  none    /dev/pts        devpts  rw      0       0

安装输出

[root@s1 etc]# mount
/dev/simfs on / type reiserfs (rw,usrquota,grpquota)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
none on /dev type tmpfs (rw)
none on /dev/pts type devpts (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)

Mtab 内容

/dev/simfs / reiserfs rw,usrquota,grpquota 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
none /dev tmpfs rw 0 0
none /dev/pts devpts rw 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0

编辑 fstab 后,首先失败

[root@s1 ~]# quotacheck -cug /home
quotacheck: Mountpoint (or device) /home not found.
quotacheck: Can't find filesystem to check or filesystem not mounted with quota option.

非常感谢任何帮助

答案1

VPS 环境不会更新您的fstab,因此webmin可以配置自动化工具来查看/etc/mtab。另一个选项可能是将以下行添加到/etc/fstab

    /dev/simfs / reiserfs rw,usrquota,grpquota 0 0

然后你可以按照你提到的建议/home/

答案2

您想在哪个文件系统上设置配额?您给出的示例是一个伪文件系统。我怀疑您能否在该文件系统上设置配额,而且这肯定不会产生任何作用。

第 7 章 实现磁盘配额CentOS 部署指南详细描述了需要什么。

相关内容