[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. Add deb repository:
2. Update package index:
3. Install FileBot:
NOTE: --install-recommends is required if you mean to install the FileBot Desktop application
4. 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. If you mean to install the FileBot Desktop application (as opposed to the filebot command-line tool for headless systems) then you must specify --install-recommends or manually install all the necessary 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 -xuAlternatively, you can open Terminal and manually execute each step:
0. Install prerequisites:
Shell: Select all
sudo apt-get install -y curlShell: Select all
sudo curl -o "/etc/apt/sources.list.d/filebot.sources" "https://raw.githubusercontent.com/filebot/plugins/master/apt/filebot.sources"Shell: Select all
sudo apt-get updateNOTE: --install-recommends is required if you mean to install the FileBot Desktop application
Shell: Select all
sudo apt-get install -y --install-recommends filebotShell: Select all
filebot -script fn:sysinfo- Default OpenJDK build for newer Debian platforms (noarch)
Shell: Select all
sudo curl -o "/etc/apt/sources.list.d/filebot.sources" "https://raw.githubusercontent.com/filebot/plugins/master/apt/filebot.sources" - OpenJDK 8 compatibility build for older Debian platforms (noarch)
Shell: Select all
sudo curl -o "/etc/apt/sources.list.d/filebot.sources" "https://raw.githubusercontent.com/filebot/plugins/master/apt/filebot-jdk8.sources" - Embedded OpenJDK build for 64-bit x86 Debian platforms (no dependencies; amd64 only)
Shell: Select all
sudo curl -o "/etc/apt/sources.list.d/filebot.sources" "https://raw.githubusercontent.com/filebot/plugins/master/apt/filebot-amd64.sources"