[DEB] Debian package
Posted: 13 Jul 2018, 12:00
FileBot provides its own APT repository so that 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 open Terminal and manually execute each step:
0. Install prerequisites:
1. Import signing keys:
2. Add deb repository:
3. Update package index:
4. Install FileBot:
5. Test Run:
FileBot provides multiple package repositories for different platforms and requirements:
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:
Shell: Select all
curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/deb.sh | sh -xu
Alternatively, you can open Terminal and manually execute each step:
0. Install prerequisites:
Shell: Select all
sudo apt-get install -y curl
Shell: Select all
curl -fsSL "https://raw.githubusercontent.com/filebot/plugins/master/gpg/maintainer.pub" | sudo gpg --dearmor --output "/usr/share/keyrings/filebot.gpg"
Shell: Select all
echo "deb [arch=all signed-by=/usr/share/keyrings/filebot.gpg] https://get.filebot.net/deb/ universal main" | sudo tee "/etc/apt/sources.list.d/filebot.list"
Shell: Select all
sudo apt-get update
Shell: Select all
sudo apt-get install -y --install-recommends filebot
Shell: Select all
filebot -script fn:sysinfo

- Default OpenJDK build for newer Debian platforms (noarch)
Code: Select all
deb [arch=all signed-by=/usr/share/keyrings/filebot.gpg] https://get.filebot.net/deb/ universal main
- OpenJDK 8 compatibility build for older Debian platforms (noarch)
Code: Select all
deb [arch=all signed-by=/usr/share/keyrings/filebot.gpg] 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 signed-by=/usr/share/keyrings/filebot.gpg] https://get.filebot.net/deb/ stable main
