我想在 /etc/fstab 中挂载我的 /home 以进行配额限制,我该怎么做?
我的 Ubuntu 服务器 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 nodev,noexec,nosuid 0 0
/dev/mapper/vg0-lv0 / ext4 errors=remount-ro 0 1
/dev/mapper/vg0-lv1 none swap sw 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
更新
@Rinzwind
文件系统
home /home ext4 defaults,usrquota 0 0
mount -o remount /home
root@ubuntu:/home/one# mount -o remount /home
mount: /home not mounted already, or bad option
重启后:
答案1
您需要添加,usrquota
为此创建的分区的选项。一种可能的有效方法是:
home /home ext4 defaults,usrquota 0 0
但因为你没有带挂载点 home 的分区,所以我只能猜测。之后你需要重新挂载/home
。
mount -o remount /home
然后文件系统就知道它需要检查配额(即/home/aquota.user
)。