xfs クォータは信頼できません

xfs クォータは信頼できません

xfsパーティションでクォータを有効にしました。しかし、壊れているようです。

$ echo asdf >/disk/l/data/avi/foo
-su: /disk/l/data/avi/foo: Disk quota exceeded

$ quota -f /disk/l
Disk quotas for user avi (uid x): 
 Filesystem  blocks   quota   limit   grace   files   quota   limit   grace
 /dev/md0 1801035344  3000000000 4000000000           38063       0       0 

どんなアイデアがありますか?

編集する:

grpquotasはいくつかのユーザーの問題を説明しましたが、他のユーザーのユーザークォータにはまだ問題があります。

$ touch a
touch: cannot touch `a': Disk quota exceeded
$ quota -f .
Disk quotas for user s (uid 2267): 
 Filesystem  blocks   quota   limit   grace   files   quota   limit   grace
   /dev/md0  293812  1000000000 2000000000               8       0       0
$ mount
/dev/md0 on /disk/l type xfs (rw,usrquota,grpquota)
# xfs_quota -x -c report |grep -v -- '------'
User quota on /disk/l (/dev/md0)
                           Blocks                     
User ID          Used       Soft       Hard    Warn/Grace     

Group quota on /disk/l (/dev/md0)
                           Blocks                     
Group ID         Used       Soft       Hard    Warn/Grace     
[... i.e. no groups or users over their soft limit ...]

ベストアンサー1

使いたいかもしれませんxfs_quota(8)XFS ファイルシステムの場合。

または、フォーマットの自動検出が正しく推論できない場合は、-F xfsこのオプションが必要になることがあります。quota

この方法がすべて機能しない場合は、クォータを有効にする方法と、このファイルシステムをマウントする方法を教えてください。

おすすめ記事