Hi there,
usually it happens for VE with cpanel installed. After online migration edquota throws an error, for example:
edquota: Quota write failed (id 502): Invalid argument
we're having exactly the same issue with virtuozzo and the recommended fix was to recreate /dev/vzfs
I used the same approach for /dev/simfs:
rm -rf /dev/simfs
_numero=$(stat / --format %d)
mknod /dev/simfs b $((${_numero} / 256)) $((${_numero} % 256))
and it looks like quota issue is gone.
Is it a safe thing to do? Wouldn't it break something else?