How to use the dnf package manager in Fedora?

Using the dnf package manager in Fedora makes it easy to install, update, and remove software packages.

Here are some basic dnf commands:

  1. Install software package:
sudo dnf install package_name
  1. Update the software package.
sudo dnf update
  1. Remove software package:
sudo dnf remove package_name
  1. Search for software packages:
dnf search keyword
  1. List the installed software packages:
dnf list installed
  1. List available software packages.
dnf list available
  1. Remove old software packages from the system.
sudo dnf clean packages
  1. Clearing cache:
sudo dnf clean all

Remember to run the dnf command with administrator privileges, you can elevate the permissions by adding sudo before the command. Hope the above information is helpful to you.

Leave a Reply 0

Your email address will not be published. Required fields are marked *