Играюсь сейчас с квотами на сервачке под дебианом. Про журналированные квоты ничего годного не нагуглил, кроме вот такого how-to:
Setting a disk usage limit in common units such as MB or GB requires knowledge about the block size of the file system. Given the device file of the disk containing the partition in question, the block size can be found out with dumpe2fs
# dumpe2fs /dev/sda6 | grep "Block size"
dumpe2fs 1.41.12 (17-May-2010)
18:Block size: 4096
This means that 524288 blocks on the partition in question correspond to 2 GB of disk usage.
Т.е. согласно этому утверждению, для квоты в 10 гигабайт нужно передать параметром количество блоков, равное 524288/2*10=2621440:
# setquota -u -F vfsv0 wintrolls 2621440 2621440 1000000 1000000 /home
# repquota -s /home | grep wintrolls
16:wintrolls -- 415M 2560M 2560M 1111 1000k 1000k
2560M
WTF?!
Далее:
# setquota -u -F vfsv0 wintrolls 10485760 10485760 1000000 1000000 /home
# repquota --help
repquota: Utility for reporting quotas.
…
-s, --human-readable show numbers in human friendly units (MB, GB, ...)
…
# repquota -s /home | grep wintrolls
16:wintrolls -- 415M 10240M 10240M 1111 1000k 1000k
GB
10240M
Доколе?