当我userquota,groupquota
向 Debian 6 DirectAdmin 服务器的主 (/) 分区添加选项时,它会以只读模式挂载该分区。
我做了什么:
- 纳米/etc/fstab
- 在“选项”列中添加挂载
userquota,groupquota
点errors=continue
/
- 保存文件并退出 nano
- 重启服务器
重新启动时会显示很多错误,所有错误都与只读文件系统有关。
有人知道我可能做错了什么吗?非常感谢!
编辑:我的 fstab 如下所示:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/vda1 during installation
UUID=aca09b50-554b-45b6-b3b6-e4444f1f80b6 / ext3 errors=continue,userquota,groupquota 0 1
# swap was on /dev/vda5 during installation
UUID=628fb534-f3e4-4c44-93ad-f9f7992feff6 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
答案1
正确的选项是用户配额和组配额。此外,启用配额后,您应该运行quotacheck -uvg /path/to/your/device
以创建aquota.{用户,组}文件。
不过,我建议设置日记帐配额如下所述这教程。