Yeah, this is where I mentioned having to re-tool parts of QuickBox. The Disk Widget is built with either a /(root) mount or /home mount in mind. In theory I could customize the php for you to have that point to your proper mount / storage volume. The same goes for your fstab… you may have to adjust that like the following:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
#
/dev/mapper/venamis--vg-root / ext4 defaults 0 1
# /boot was on /dev/sda1 during installation
UUID=5ab248e2-a676-4626-a5c7-1369c2af1553 /boot ext2 defaults 0 2
/dev/mapper/venamis--vg-swap_1 none swap sw 0 0
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0
10.0.0.15:/mnt /mnt nfs usrquota,errors=remount-ro vers=3 0 0
Perhaps that would work… and of course resetting the quota with the command
quotaoff -a
service quota stop
mount -o remount /mnt
quotacheck -auMF vfsv1
quotaon -uv /mnt
service quota start
This is just theory… so we’ll have to keep chipping away at this until we have you settled.
You could also try adding this to your /srv/rutorrent/home/widgets
directory. Remove the other disk_data.php and rename this to that accordingly.
disk_data-mnt.php.txt (5.5 KB)