• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Quota problem: Invalid cross-device link

G

Gorka

Guest
I'm trying to enable hard disk quota, but I keep getting the "hard disk quota not supported" message.

Far as I can tell disk quotas are enabled on fstab and running ok, but:

--------------------------------------------------------
#/usr/local/psa/admin/sbin/usermng --isquotable
usermng: Unable to turn on user quota. User quota not supported on device '/dev/md4'

System error 18: Invalid cross-device link
usermng: Unable to turn on user quota. User quota not supported on device '/dev/md4'

System error 18: Invalid cross-device link
1
--------------------------------------------------------

The fstab entries:
--------------------------------------------------------
# cat /etc/fstab
/dev/md0 /boot ext3 errors=remount-ro 0 1
/dev/md2 / reiserfs defaults,usrquota,grpquota 0 0
/dev/md1 none swap sw 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs defaults 0 0
/dev/md4 /usr reiserfs auto,defaults,noatime,nodiratime,usrquota 0 0
--------------------------------------------------------

I already followed some other threads on the forum and did the remount+quotaoff+quotacheck+quotaon procedure to no success.

Could anybody help with this?
 
Here is an SWsoft knowledge base article concerning your problem:

http://kb.swsoft.com/article_16_768_en.html
=================================================
First of all make sure that quota is supported by kernel. It should be compiled into the kernel or loaded as module.

You can check if quota is configured properly with this command line:
/usr/local/psa/admin/sbin/usermng --isquotable

Normally, it should return "0".

If the utility returns the following error message:

usermng: Unable to turn on user quota. User quota not supported on device '/dev/sda3'
System error 3: No such process


then, please, make sure that quota is enabled in /etc/fstab for the partitions Plesk stores data on.
You should add 'usrquota' as it is done in the example below:

/dev/hda1 / ext3 defaults,usrquota 1 1

Note: the partition must be remounted after you added usrquota option into /etc/fstab.

Please update users quota with this command line:
quotaon /dev/hda1

Make sure that 'aquota' format is used. It should be an aquota.user file
in the root of every partition where quota is enabled. If you see
a 'quota.user' file, please remove it and create the right one:


rm -f quota.user
touch aquota.user
/sbin/quotacheck -fmv /dev/hda1

Note: you have to use your own device instead of '/dev/hda1'.


How to configure Quota on FreeBSD can be found at http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/quotas.html
=================================================

./anb
 
Thanks anb_t, but I had already read that article and the problem is not the same described in it.

Disk quotas are enabled, quota files exist and they are in aquota format. Still, I can't get rid of the "hard disk quota not supported" message. I'm only guessing, but the "invalid cross-device link" error makes me think of a broken soft link somewhere in plesk.
 
Back
Top