You can find more info here:
http://missilehugger.com/735/synology-package-filebot/
Known issues:
* MediaInfo / 7zip native libs are not packaged
* If $HOME/.filebot is not writable you'll need to change user.home, application.dir and java.io.tmpdir, e.g.
Code: Select all
-Duser.home=/volume1/.filebot -Dapplication.dir=/volume1/.filebot -Djava.io.tmpdir=/volume1/.filebot/temp
FAQ wrote:Q: I'm running FileBot on a Linux machine and non-ASCII characters get all messed up. Why do unicode characters not work?
A: On some machines the locale is not set up. You'll need to tell Java what charset filenames are encoded with by setting the environment variable LANG. Also if you get an InvalidPathException about unmappable characters then it could very well be because LANG is not set up correctly.Code: Select all
export LANG=en_US.utf8
Here's the startup script filebot.sh with all the options:
Code: Select all
#!/bin/sh
export LANG=en_US.utf8
java -Dunixfs=false -DuseExtendedFileAttributes=false -Dsun.net.client.defaultConnectTimeout=10000 -Dsun.net.client.defaultReadTimeout=60000 -Dapplication.deployment=spk -Duser.home=/usr/local/filebot/data -Dapplication.dir=/usr/local/filebot/data -Djava.io.tmpdir=/usr/local/filebot/data/temp -Djna.library.path=/usr/local/filebot -Djava.library.path=/usr/local/filebot -jar /usr/local/filebot/filebot.jar "$@"
