Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[Jessie] HowTo: Install and run FileBot

Share your HowTo, Documentation, Tips and Tricks. Not for support questions!.
Post Reply
Message
Author
User avatar
cra1g321
Posts: 241
Joined: 2011-01-20 23:03

[Jessie] HowTo: Install and run FileBot

#1 Post by cra1g321 »

[Jessie] HowTo: Install and run FileBot

This how-to will provide you with the steps needed to install FileBot and java runtime version 8 (FileBot will not run with version 7)
More info about FileBot http://www.filebot.net/


1. ADD THE BACKPORTS REPOSITORY

1A. Edit sources.list file

Code: Select all

nano /etc/apt/sources.list
1B. Add the following lines

Code: Select all

# Debian Backports
deb http://http.debian.net/debian jessie-backports main
1C. Update Sources

Code: Select all

apt-get update

2. INSTALL JAVA RUNTIME 8


2A. Install java runtime version 8 from jessie-backports

Code: Select all

apt-get install -t jessie-backports openjdk-8-jre
2B. Configure Debian to use version 8

Code: Select all

sudo update-alternatives --config java
3. DOWNLOAD, INSTALL & RUN 32/64BIT DEB FILE

3A. To download the 32bit deb file

Code: Select all

wget -O filebot.deb 'https://app.filebot.net/download.php?type=deb&arch=i386'
3A. To download the 64bit deb file

Code: Select all

wget -O filebot.deb 'https://app.filebot.net/download.php?type=deb&arch=amd64'
3B. Install the deb file

Code: Select all

dpkg -i filebot.deb
3C. Launch FileBot from terminal

Code: Select all

filebot

Post Reply