QUOTE (MaRiOsGR @ Apr 5 2009, 04:46 PM)

Hello,
when I'm trying to setup quotas inside plesk Account Preferences -> Hard disk quota -> Unlimited (hard disk quota is not supported due to configuration of server file system)
how can this be fixed?
In your /etc/fstab add the option grpquota and usrquota. Then remount the partition in question. You should then be able to use quotas without a problem.
Yours will look a little different, since im using LVM:
QUOTE
[root@titan ~]# mount -l | grep Vol00
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw)
[root@titan ~]#
edit our fstab:
QUOTE
[root@titan ~]# cat /etc/fstab
/dev/VolGroup00/LogVol00 / ext3 defaults,grpquota,usrquota 1 1
LABEL=/boot /boot ext3 defaults 1 2
devpts /dev/pts devpts gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs defaults 0 0
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
[root@titan ~]#
remount(or reboot if you want):
QUOTE
[root@titan ~]# mount -o remount /
[root@titan ~]# mount -l | grep Vol00
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw,grpquota,usrquota)
[root@titan ~]#