Skip to content

Instantly share code, notes, and snippets.

@questionlp
Last active January 7, 2025 21:54
Show Gist options
  • Save questionlp/557949ec9f19e1cab7819e9b6621e325 to your computer and use it in GitHub Desktop.
Save questionlp/557949ec9f19e1cab7819e9b6621e325 to your computer and use it in GitHub Desktop.
Install Fedora Packages

Install Fedora Packages

Base Workstation Software

sudo dnf install htop btop tmux vim fastfetch git gh zsh avahi-tools

Additional Fonts

sudo dnf install mozilla-fira-mono-fonts mozilla-fira-sans-fonts fira-code-fonts jetbrains-mono-fonts-all cascadia-fonts-all cascadia-code-fonts cascadia-code-pl-fonts ibm-plex-fonts-all

Base Server Software

sudo dnf install git python3-pip zsh vim htop screen tmux wget curl

Prep for Installing MySQL Community Edition

sudo dnf remove mariadb

Install Codecs

Using instructions provided at: https://docs.fedoraproject.org/en-US/quick-docs/openh264/

Fedora 39 and 40

 sudo dnf config-manager --set-enabled fedora-cisco-openh264
 sudo dnf install gstreamer1-plugin-openh264 mozilla-openh264

Fedora 41

sudo dnf config-manager setopt fedora-cisco-openh264.enabled=1
sudo dnf install gstreamer1-plugin-openh264 mozilla-openh264

Setting Up RPM Fusion Repositories

sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm

Install Full ffmpeg

sudo dnf swap ffmpeg-free ffmpeg --allowerasing
sudo dnf install libavcodec-freeworld ffmpeg --allowerasing

Installing Mesa Drivers for AMD Radeon

sudo dnf swap mesa-va-drivers mesa-va-drivers-freeworld
sudo dnf swap mesa-vdpau-drivers mesa-vdpau-drivers-freeworld

Installing Intel Media Driver

sudo dnf install intel-media-driver

Installing Multimedia Programs, Tools and Dependencies from RPM Fusion

Fedora 40

sudo dnf install libva-utils mpv nvtop libavcodec-freeworld vainfo
sudo dnf update @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
sudo dnf update @sound-and-video

Fedora 41

sudo dnf install libva-utils mpv nvtop libavcodec-freeworld vainfo
sudo dnf group upgrade multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
sudo dnf group upgrade sound-and-video

Install Support for Playing DVDs

sudo dnf install rpmfusion-free-release-tainted
sudo dnf install libdvdcss

Install Additional Firmware

sudo dnf install rpmfusion-nonfree-release-tainted
sudo dnf --repo=rpmfusion-nonfree-tainted install "*-firmware"

Enable OpenH264 in Firefox

Set the following configuration settings to true via about:config

  • media.gmp-gmpopenh264.autoupdate
  • media.gmp-gmpopenh264.enabled
  • media.gmp-gmpopenh264.provider.enabled
  • media.peerconnection.video.h264_enabled

Restart Firefox.

Install Dependencies for Building and Installing Ruby via rbenv

Install libyaml-devel using dnf:

sudo install libyaml-devel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment