5 Things You MUST DO After Installing Fedora 35

1. Optimize DNF Config

Edit /etc/dnf/dnf.conf, add lines below:

1
2
3
fastestmirror=True
max_parallel_downloads=10
defaultyes=True

2. System Update

1
2
sudo dnf update
# Just hit Enter.

3. Enable RPM

[1]

Procedure

  1. To enable the Free repository, use:

    1
    2
    $ sudo dnf install \
    https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
  2. Optionally, enable the Nonfree repository:

    1
    2
    $ sudo dnf install \
    https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  3. The first time you attempt to install packages from these repositories, the dnf utility prompts you to confirm the signature of the repositories. Confirm it.

4. Installing Media Codecs

[1]

Procedure

  • Use the dnf utility to install packages that provide multimedia libraries:

    1
    2
    3
    4
    5
    sudo dnf install gstreamer1-plugins-{bad-\*,good-\*,base} gstreamer1-plugin-openh264 gstreamer1-libav --exclude=gstreamer1-plugins-bad-free-devel

    sudo dnf install lame\* --exclude=lame-devel

    sudo dnf group upgrade --with-optional Multimedia

5. Install Extensions, Software, etc.


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!