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 rpmfusion
 
 sudo 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-video
if needed
 sudo 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
  1. Open the DNF configuration file: Open the file /etc/dnf/dnf.conf using a text editor with root privileges.
    • sudo nano /etc/dnf/dnf.conf
  2. Locate the [main] section: Find the [main] section in the file.
  3. 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 SElinux
sudo nano /etc/selinux/config
 SELINUX=disabled
 
Disable firewall
sudo systemctl disable firewalld.service
 
 


sudo rpm -ivh --nodigest --nofiledigest

Comments