Installing OBS Studio on a Fedora System 36
The following guide describes how to install OBS Studio on Fedora 36
We will do the whole thing in a few minutes using the console.
We run the terminal and update packages:
1 | sudo dnf upgrade --refresh |
We run the rpmfusion repository:
1 2 | sudo dnf install \ https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm |
1 2 | sudo dnf install \ https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm |
If we want, we run them in the system:
1 | sudo dnf config-manager --set-enabled rpmfusion-free-updates-testing |
1 | sudo dnf config-manager --set-enabled rpmfusion-nonfree-updates-testing |
We install the obsa:
1 | sudo dnf install obs-studio -y |