[RPM] Fedora package

Support for Ubuntu and other Desktop Linux distributions
Locked
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

[RPM] Fedora package

Post by rednoah »

FileBot provides its own YUM repository, so you can install and upgrade FileBot via dnf install filebot or zypper install filebot.


The installer/rpm.sh will add the repository and install FileBot for you:

Code: Select all

bash -xu <<< "$(curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/rpm.sh)"


Alternatively, you can manually add the repository:



Use DNF on Fedora Linux:

1. Add repository

Code: Select all

sudo dnf config-manager --add-repo 'https://raw.githubusercontent.com/filebot/plugins/master/yum/main.repo'
2. Enable repository

Code: Select all

sudo dnf config-manager --set-enabled filebot --dump
3. Install dependencies

Code: Select all

sudo dnf install zenity mediainfo
4. Install FileBot

Code: Select all

sudo dnf install filebot
5. Test

Code: Select all

filebot -script fn:sysinfo


Use ZYPPER on SUSE Linux:

1. Add repository

Code: Select all

sudo zypper addrepo --enable --refresh --gpgcheck --check 'https://raw.githubusercontent.com/filebot/plugins/master/yum/main.repo'
2. Install dependencies

Code: Select all

sudo zypper install zenity mediainfo
3. Install FileBot

Code: Select all

sudo zypper install filebot
4. Test

Code: Select all

filebot -script fn:sysinfo



Troubleshooting:
:idea: Please read the FAQ and How to Request Help.
Locked