Xfs
XFS 是否支持預設配額?
我們需要為所有使用者設置一個預設配額。從我可以看到
man 8 xfs_quota
,您只能為單個使用者設置配額。我需要設置一個適用於每個人的配額,而不必列舉每個使用者。
如果您確實閱讀了手冊頁,則不確定您是如何錯過的。
limit [ -gpu ] bsoft=N | bhard=N | isoft=N | ihard=N | rtbsoft=N | rtb‐ hard=N -d | id | name Set quota block limits (bhard/bsoft), inode count limits (ihard/isoft) and/or realtime block limits (rtbhard/rtbsoft). The -d option (defaults) can be used to set the default value that will be used, otherwise a specific user/group/project name or numeric identifier must be specified.
因此,您將設置一個預設配額,例如:
# xfs_quota -x -c 'limit bsoft=1g bhard=1g -d' /home