Fstab
如何在 fstab 文件中啟用配額?
我想啟用配額。
我的 fstab 目前有:
# <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc nodev,noexec,nosuid 0 0 # / was on /dev/sda1 during installation UUID=97439827-cdb6-4406-8403-76ab1de7a3b0 / ext4 errors=remount-ro 0 1 # swap was on /dev/sda5 during installation UUID=194bd177-cba0-415d-b45d-bd87b7bf446e none swap sw 0 0 durrantm:~/Dropbox/96_2013/work/code $
如果我想添加
usrquota,grpquota
以啟用使用者和組配額,我是否將它們放在 之後errors=remount-rov
,例如errors=remount-rov,usrquota,grpquota
根據手冊頁
mount
errors
我們在ie中只能定義三個選項continue|remount-ro|panic
錯誤={繼續|重新安裝-ro|恐慌}
定義遇到錯誤時的行為。(要麼忽略錯誤並將文件系統標記為錯誤並繼續,要麼以只讀方式重新掛載文件系統,要麼恐慌並暫停系統。)預設設置在文件系統超級塊中,可以使用 tune2fs(8) 更改。
所以你只需要像這樣添加:
/dev/sda1 /mount_point ext4 usrquota,grpquota,errors=remount-ro 0 1
然後只需重新掛載分區:
mount -o remount /mount_point
然後簽入
mount
命令