[DEB] Debian package
Posted: 13 Jul 2018, 12:00
FileBot provides it's own APT repository, so you can install and upgrade FileBot via sudo apt-get install filebot.
The installer/deb.sh script will add the repository and install FileBot for you:
Alternatively, you can manually add the repository via Software & Update:
1. Add Key File:

2. Add APT line:
Different packages with different dependencies are available for different platforms.


3. Install FileBot:
Use --install-recommends or --no-install-recommends to explicitly install or skip optional dependencies.
The installer/deb.sh script will add the repository and install FileBot for you:
Code: Select all
curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/deb.sh | sh -xu
Alternatively, you can manually add the repository via Software & Update:
1. Add Key File:
Code: Select all
https://get.filebot.net/filebot/KEYS

2. Add APT line:
Different packages with different dependencies are available for different platforms.
- OpenJDK build for newer Debian platforms (noarch)
Code: Select all
deb [arch=all] https://get.filebot.net/deb/ universal main
- OpenJDK 8 compatibility build for older Debian platforms (noarch)
Code: Select all
deb [arch=all] https://get.filebot.net/deb/ universal-jdk8 main
- Embedded OpenJDK build for 64-bit x86 Debian platforms (no dependencies; amd64 only)
Code: Select all
deb [arch=amd64] https://get.filebot.net/deb/ stable main


3. Install FileBot:
Code: Select all
sudo apt-get install filebot
