ReadyNas 516 filebot manual

Any questions? Need some help?
Post Reply
aaseef021
Posts: 53
Joined: 08 Nov 2017, 04:08

ReadyNas 516 filebot manual

Post by aaseef021 »

I used to be able to run the following command without any errors before, now when I run the same following command I get an error. Can someone please guide me in the right direction to solve this

Code: Select all

root@nas-6E-93-62:~# filebot -script fn:amc --output "/data/Videos" --action copy --conflict override -non-strict --log-file amc.log --def clean=y artwork=y excludeList=amc.txt "/data/Torrents"
Locking /root/.filebot/logs/amc.log

Code: Select all

(process:18747): GLib-GIO-ERROR **: Settings schema 'org.gnome.system.proxy' is not installed
User avatar
rednoah
The Source
Posts: 22975
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: ReadyNas 516 filebot manual

Post by rednoah »

The error message indicates that you're launching the FileBot GUI on Linux, but that would only happen if you call filebot without command-line options. So this doesn't make sense.

What do these commands say?

Code: Select all

which filebot

Code: Select all

cat `which filebot`

Code: Select all

filebot -version

Code: Select all

filebot -script fn:sysinfo
:idea: Please read the FAQ and How to Request Help.
aaseef021
Posts: 53
Joined: 08 Nov 2017, 04:08

Re: ReadyNas 516 filebot manual

Post by aaseef021 »

Hi! Ues i ran this through a terminal on Mac, i also tried on window using putty. Would you like me to run those commands you provide and update you with the outcome?
aaseef021
Posts: 53
Joined: 08 Nov 2017, 04:08

Re: ReadyNas 516 filebot manual

Post by aaseef021 »

running cat `which filebot`

Code: Select all

#!/bin/sh
APP_ROOT=/usr/share/filebot

if [ -z "$HOME" ]; then
	echo '$HOME must be set'
	exit 1
fi

# add APP_ROOT to LD_LIBRARY_PATH
if [ ! -z "$LD_LIBRARY_PATH" ]; then
	export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$APP_ROOT"
else
	export LD_LIBRARY_PATH="$APP_ROOT"
fi

# select application data folder
APP_DATA="$HOME/.filebot"

java -Dunixfs=false -DuseGVFS=true -DuseExtendedFileAttributes=true -DuseCreationDate=false -Djava.net.useSystemProxies=true -Djna.nosys=false -Djna.nounpack=true -Dapplication.deployment=deb -Dnet.filebot.gio.GVFS="$XDG_RUNTIME_DIR/gvfs" -Dapplication.dir="$APP_DATA" -Djava.io.tmpdir="$APP_DATA/temp" -Dnet.filebot.AcoustID.fpcalc="$APP_ROOT/fpcalc" $JAVA_OPTS -jar "$APP_ROOT/FileBot.jar" "$@"
root@nas-6E-93-62:~#
aaseef021
Posts: 53
Joined: 08 Nov 2017, 04:08

Re: ReadyNas 516 filebot manual

Post by aaseef021 »

Code: Select all

which filebot

Code: Select all

/usr/bin/filebot

Code: Select all

filebot -version

Code: Select all

FileBot 4.7.9 (r4984) / OpenJDK Runtime Environment 1.8.0_121 / Linux 4.4.91.x86_64.1 (amd64)

Code: Select all

 filebot -script fn:sysinfo

Code: Select all

(process:20007): GLib-GIO-ERROR **: Settings schema 'org.gnome.system.proxy' is not installed

Trace/breakpoint trap (core dumped)
User avatar
rednoah
The Source
Posts: 22975
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: ReadyNas 516 filebot manual

Post by rednoah »

I see. You're using the Ubuntu packages? I guess that's the problem.

I recommend the portable package for generic headless Linux machines:
https://github.com/filebot/plugins/blob ... ortable.sh
:idea: Please read the FAQ and How to Request Help.
Post Reply