Failed to load 7z-JBinding: no 7-Zip-JBinding in java.library.path

2.1k Views Asked by At

System details: Linux 3.14.21-1-MANJARO x64

Java version: java version "1.8.0_25"

Java(TM) SE Runtime Environment (build 1.8.0_25-b17)

Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)

dependencies installed: java-p7zip-binding and p7zip

I've installed filebot to maintain a media library on my system, however, whenever I execute the program, I get the following error:

SevenZipNativeInitializationException: Failed to load 7z-JBinding: no 7-Zip-JBinding in java.library.path

As mentioned above, I do have the required dependencies installed.

When I use

java -XshowSettings:properties

I get this output with my library paths

Property settings:
awt.toolkit = sun.awt.X11.XToolkit
file.encoding = UTF-8
file.encoding.pkg = sun.io
file.separator = /
java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment
java.awt.printerjob = sun.print.PSPrinterJob
java.class.path = .
java.class.version = 52.0
java.endorsed.dirs = /usr/lib/jvm/java-8-jdk/jre/lib/endorsed
java.ext.dirs = /usr/lib/jvm/java-8-jdk/jre/lib/ext
    /usr/java/packages/lib/ext
java.home = /usr/lib/jvm/java-8-jdk/jre
java.io.tmpdir = /tmp
java.library.path = /usr/java/packages/lib/amd64
    /usr/lib64
    /lib64
    /lib
    /usr/lib
java.runtime.name = Java(TM) SE Runtime Environment
java.runtime.version = 1.8.0_25-b17
java.specification.name = Java Platform API Specification
java.specification.vendor = Oracle Corporation
java.specification.version = 1.8
java.vendor = Oracle Corporation
java.vendor.url = http://java.oracle.com/
java.vendor.url.bug = http://bugreport.sun.com/bugreport/
java.version = 1.8.0_25
java.vm.info = mixed mode
java.vm.name = Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name = Java Virtual Machine Specification
java.vm.specification.vendor = Oracle Corporation
java.vm.specification.version = 1.8
java.vm.vendor = Oracle Corporation
java.vm.version = 25.25-b02
line.separator = \n 
os.arch = amd64
os.name = Linux
os.version = 3.14.21-1-MANJARO                                                                                             
path.separator = :                                                                                                         
sun.arch.data.model = 64                                                                                                   
sun.boot.class.path = /usr/lib/jvm/java-8-jdk/jre/lib/resources.jar
    /usr/lib/jvm/java-8-jdk/jre/lib/rt.jar
    /usr/lib/jvm/java-8-jdk/jre/lib/sunrsasign.jar
    /usr/lib/jvm/java-8-jdk/jre/lib/jsse.jar
    /usr/lib/jvm/java-8-jdk/jre/lib/jce.jar
    /usr/lib/jvm/java-8-jdk/jre/lib/charsets.jar
    /usr/lib/jvm/java-8-jdk/jre/lib/jfr.jar
    /usr/lib/jvm/java-8-jdk/jre/classes
sun.boot.library.path = /usr/lib/jvm/java-8-jdk/jre/lib/amd64
sun.cpu.endian = little
sun.cpu.isalist = 
sun.io.unicode.encoding = UnicodeLittle
sun.java.launcher = SUN_STANDARD
sun.jnu.encoding = UTF-8
sun.management.compiler = HotSpot 64-Bit Tiered Compilers
sun.os.patch.level = unknown
user.country = US
user.dir = /usr/lib/amd64
user.home = /home/name
user.language = en
user.name = name
user.timezone =

I've added the lib7-Zip-JBinding.so that comes with the java-p7zip-binding package to all of the java.library.path directories in an attempt for it to work, but unfortunately it hasn't.

Any ideas on why I'm getting that failed to load error?

2

There are 2 best solutions below

0
On BEST ANSWER
LD_LIBRARY_PATH

!=

java.library.path

It turns out the path that I needed to fulfill was the

LD_LIBRARY_PATH

Which for my version happens to be

/usr/lib/jvm/java-8-openjdk/jre/lib/amd64

I would suspect that this would solve this issue for java 7 as well, just use the appropriate directory. Simply copying and pasting the .so file into that directory resulted in immediate success.

2
On

I had all the same symptoms on a raspberry pi2, I however was not able to fix with the solution from the op user259861.

Here is what worked for me:

I grabbed the jar file from under the 'Other' heading at http://jdownloader.org/download/offline

  1. mkdir /tmp/jd2
  2. cd /tmp/jd2
  3. wget http://installer.jdownloader.org/JDownloader.jar
  4. sudo java -Djava.awt.headless=true -jar JDownloader.jar
  5. cd libs/
  6. sudo jar xf sevenzipjbindingLinuxArmVersion.jar
  7. sudo cp Linux-armpi/lib7-Zip-JBinding.so /usr/share/filebot/
  8. filebot -script "fn:sysinfo" |grep 7-Zip

The output of the filebot sysinfo function should now be: 7-Zip-JBinding: OK