Forum Moderators: bakedjake
source [schmut.com]
* Make a mount point
mkdir -p /mnt/quotadir
* Create an image file for the virtual file system
dd if=/dev/zero of=/mnt/quota.img bs=1024 count=100000
* Format the drive
mkfs.ext3 /mnt/quota.img
* Mount the drive
mount -o loop /mnt/quota.img /mnt/quotadir
* A permanent fstab entry would be
/mnt/quota.img /mnt/quota ext3 loop 1 2