5 Things You MUST DO After Installing Fedora 35
1. Optimize DNF Config
Edit /etc/dnf/dnf.conf, add lines below:
1 | |
2. System Update
1 | |
3. Enable RPM
Procedure
To enable the Free repository, use:
1
2$ sudo dnf install \
https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpmOptionally, enable the Nonfree repository:
1
2$ sudo dnf install \
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpmThe first time you attempt to install packages from these repositories, the
dnfutility prompts you to confirm the signature of the repositories. Confirm it.
4. Installing Media Codecs
Procedure
Use the
dnfutility to install packages that provide multimedia libraries:1
2
3
4
5sudo 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 协议 ,转载请注明出处!