Missile Huggers Synology NAS package
Posted: 11 Mar 2013, 07:01
Missile Hugger is kindly maintaining a package for Synology NAS. It's not part of set of installers and packages so it may lag behind the official releases of FileBot:
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.
* If unicode character don't work then locale is not set up correctly. Just add export LANG=en_US.utf8 in filebot.sh before the filebot call.
Here's the startup script filebot.sh with all the options:
If you're using Missile Huggers packages make sure to donate, it's just polite.
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 "$@"
