I have a problem with my Ubuntu VPS and the provider is unable and/or unwilling to help. The problem is that they supposedly support disk quotas, but it is not working on my server. repquota -a
complains that /dev/vzfs
does not exist, even though /
is mounted on it.
After investigating the problem for hours, I found this post.
The vzquota
script looks exactly like the one on my server except for the line that creates the device node, which does not exist in my version:
[ -e "/dev/vzfs" ] || mknod /dev/vzfs b 0 115
Could this be the solution? What would be the correct numbers for mknod
to create the vzfs
device? Can I get them from my provider? Or should they have been dynamically assigned by the virtualization software?