Fstab
將 userquota、groupquota 添加到 fstab 後的只讀文件系統
當我將選項添加
userquota,groupquota
到我的 Debian 6 DirectAdmin 伺服器的主 (/) 分區時,它會以只讀模式安裝該分區。我做到了:
- 納米 /etc/fstab
- 在 ‘options’ 列中添加
userquota,groupquota
aftererrors=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
正確的選項是usrquota和grpquota。此外,啟用配額後,您應該執行
quotacheck -uvg /path/to/your/device
以創建*aquota.{user,group}*文件。但是,我建議按照本教程中的說明設置日誌配額。