Page 1 of 1

Installation on Linux without root permissions

Posted: 25 May 2012, 17:23
by seequcn
Hi,

I'm trying to install Filebot on my seedbox running Debian. The policy of the provider is to allow users to install software to their home directory, but not to have permission to run sudo.

It seems that dpkg requires root access.

Is there any other way to install Filebot without using dpkg?

Thanks!

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 00:00
by rednoah
Do you need GUI or cmdline? Running via webstart should work. Also you could try the portable package. For the latter two you need to setup the native libraries yourself if you need mediainfo/7zip integration.

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 00:18
by seequcn
I need cmdline only. There is no GUI on the seedbox.

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 00:23
by rednoah
Then just use the portable. Unpack the zip and use the filebot.sh startup script.

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 02:02
by seequcn
I downloaded the portable from http://softlayer.dl.sourceforge.net/pro ... rtable.zip and unzipped it.

Then I got rid of the DOS carriage returns ( as I was getting '/bin/bash^M: bad interpreter: No such file or directory' error)

then did a 'chmod 755 filebot.sh' and ran it with ./filebot.sh

I got the following error:

Unable to access jarfile /FileBot.jar

The version of java on my seedbox is
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 02:52
by rednoah
That's Wierd. The most basic way is to run the jar directly with java.

java -jar FileBot.jar

Let's see if we can make that work and then take it from there.

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 03:25
by seequcn
Yes it is weird, it again comes back with the error:-

Unable to access jar file Filebot.jar

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 04:59
by rednoah
Apparently that error means that java can't open the jar file. Maybe the path is not correct or a permissions problem. Can't find a definite answer online.

Re: Installation on Linux without root permissions

Posted: 26 May 2012, 08:51
by seequcn
You're right, it was the wrong path, need to input while in the working directory where the jar is located:

java -jar ./Filebot.jar

it works now! Doing more testing, will let you know how it goes

Re: Installation on Linux without root permissions

Posted: 28 May 2012, 00:36
by seequcn
Wrong diagnosis and solution. I didn't capitalize the B in FileBot.jar

Duh!