You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks @trapexit for your hard work and being super engaged contributor to mergerfs users.
I'm trying to consolidate a few disks using mergerfs.dedup, seems like some of those characters triggered maybe an escaping problem.
It's not a big issue for me but maybe to someone else in the future
root@mymedia:/srv/0e191110-567c-41cf-970e-359f647b8dd3/Media# mergerfs.dedup -v -d newest /srv/0e191110-567c-41cf-970e-359f647b8dd3/Media/
Traceback (most recent call last):
File "/usr/local/bin/mergerfs.dedup", line 548, in
main()
File "/usr/local/bin/mergerfs.dedup", line 533, in main
total_size += dedup(fullpath,verbose,ignorefun,execute,dedupfun)
File "/usr/local/bin/mergerfs.dedup", line 359, in dedup
paths = getxattr(fullpath,b'user.mergerfs.allpaths').split('\0')
File "/usr/local/bin/mergerfs.dedup", line 337, in getxattr
attr = lgetxattr(path,key)
File "/usr/local/bin/mergerfs.dedup", line 50, in lgetxattr
raise IOError(err,os.strerror(err),path)
FileNotFoundError: [Errno 2] No such file or directory: b'/srv/0e191110-567c-41cf-970e-359f647b8dd3/Media/Backup/Backup-Fedoraidan/idan/.local/share/Trash/info/\x10\x03\x01l\udc9a\x7f.trashinfo'
The text was updated successfully, but these errors were encountered:
The problem is the encoding of the filename. ::sigh:: I've spent more time screwing with Python's annoying encoding/decoding than working on real shit. I should just rewrite everything in C++.
Thanks @trapexit for your hard work and being super engaged contributor to mergerfs users.
I'm trying to consolidate a few disks using mergerfs.dedup, seems like some of those characters triggered maybe an escaping problem.
It's not a big issue for me but maybe to someone else in the future
The text was updated successfully, but these errors were encountered: