Backup is broken

  • Hey, I'm trying to understand why I'm getting: "There is not enough free storage space to continue!" . It was working before I started to use docker, not sure if this is related.

    I'm trying to backup to /var/media/xstorage, I have almost 5TB free what is more then enough. Will appreciate any help

  • Free space check is done here.

    To i.e. check if your large drive is detected correctly open python and type:

    Python
    import os
    s=os.statvfs('/var/media/xstorage')
    s
    s.f_bsize*s.f_bavail
  • hmm, will dig how that works, weird tho, seems everything is ok