Any questions? Need some help?
aaseef021
Posts: 53 Joined: 08 Nov 2017, 04:08
Post
by aaseef021 » 08 Nov 2017, 04:11
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
rednoah
The Source
Posts: 23953 Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:
Post
by rednoah » 08 Nov 2017, 10:23
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?
aaseef021
Posts: 53 Joined: 08 Nov 2017, 04:08
Post
by aaseef021 » 08 Nov 2017, 14:44
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
Post
by aaseef021 » 09 Nov 2017, 00:57
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
Post
by aaseef021 » 09 Nov 2017, 00:59
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
(process:20007): GLib-GIO-ERROR **: Settings schema 'org.gnome.system.proxy' is not installed
Trace/breakpoint trap (core dumped)