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
FileBot provides multiple package repositories for different platforms and requirements:
- 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
Use --install-recommends or --no-install-recommends to explicitly install or skip optional dependencies.