Fedora
network manager
sudo dnf install nm-connection-editor
Gnome Disk Utility
sudo dnf install gnome-disk-utility
To update GRUB after editing a file, run the
sudo grub2-mkconfig
install kvm/qemu
sudo dnf install @virtualization
multimedia codecs
enable rpmfusionsudo dnf install \ https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install \ https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf group install multimedia
sudo dnf group install sound-and-videoif neededsudo dnf swap ffmpeg-free ffmpeg --allowerasing
sudo dnf config-manager set-opt fedora-cisco-openh264.enabled=1
increase dnf parallel downloads
Step-by-step instructions- Open the DNF configuration file: Open the file
/etc/dnf/dnf.confusing a text editor with root privileges.sudo nano /etc/dnf/dnf.conf
- Locate the
[main]section: Find the[main]section in the file. - Add or modify
max_parallel_downloads: Add a new line or modify an existing one to set the desired number of parallel downloads. A value of 10 is a common recommendation.max_parallel_downloads=10
Disable SElinuxsudo nano /etc/selinux/configSELINUX=disabled
Disable firewallsudo systemctl disable firewalld.service
Comments
Post a Comment