Page 1 of 1

rename script xattr error on nfs drive

Posted: 23 Jun 2014, 10:12
by Hairybiker
I have an all linux system.
Shares are via NFS mounts.
Since the latest version of Filebot I am seeing xattr errors.

Code: Select all

 filebot -script fn:sysinfoFileBot 4.1 (r2245)
JNA Native: 4.0.0
MediaInfo: MediaInfoLib - v0.7.69
7-Zip-JBinding: OK
chromaprint-tools: fpcalc version 1.1.0 (/usr/share/filebot/fpcalc)
Extended Attributes: OK
Groovy Engine: 2.3.2
JRE: OpenJDK Runtime Environment 1.7.0_55
JVM: 64-bit OpenJDK 64-Bit Server VM
OS: Linux (amd64)
uname: Linux duo 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
Done ヾ(@⌒ー⌒@)ノ
example

Code: Select all

Jun 23, 2014 10:59:34 AM net.filebot.media.MediaDetection storeMetaInfo
WARNING: Failed to set xattr: java.nio.file.FileSystemException: /home/hairybiker/TV/1.Watching/<folder/file>avi: Error writing extended attribute 'net.filebot.metadata': Operation not supported
Running an install from the updater script:

Code: Select all

     if [ `uname -m` = "i686" ]
        then
           wget -O filebot-i386.deb -4 'http://filebot.sourceforge.net/download
        else
           wget -O filebot-amd64.deb -4 'http://filebot.sourceforge.net/downloa
        fi
        sudo dpkg --force-depends -i filebot-*.deb && rm filebot-*.deb
Both server and client running 64bit Linux Mint 17

Re: rename script xattr error on nfs drive

Posted: 23 Jun 2014, 10:45
by rednoah
Are these warnings in anyway affecting the desired outcome?

You can disable xattr with:

Code: Select all

-no-xattr

Re: rename script xattr error on nfs drive

Posted: 23 Jun 2014, 10:47
by Hairybiker
It is new so I thought it was worth reporting. I dislike ANY errors/warning.
I DID search on this and the only problem was on cifs shares, this is NFS on ext4, so setting attribs should be possible.

Re: rename script xattr error on nfs drive

Posted: 23 Jun 2014, 11:07
by rednoah
I only checked for a minute, but from what I can tell xattr (not to be confused with named attributes) is not supported on NFS.

Try setting xattr from console. I'm sure you'll get the exact same error message. ;)

Re: rename script xattr error on nfs drive

Posted: 23 Jun 2014, 11:09
by Hairybiker
OK I will just apply the -no-xattr to the script.

Re: rename script xattr error on nfs drive

Posted: 23 Sep 2015, 14:57
by spetrillo
rednoah wrote:Are these warnings in anyway affecting the desired outcome?

You can disable xattr with:

Code: Select all

-no-xattr
Can this be done via script?