Wiki

Basics

Fedora works mostly like other Linux distributions. The build in command-line text editor is vi not vim.

Managing packages

Fedore uses the dnf package manager. It automatically updates the available packages, so a call like apt get update is not at all necessary.

To list installed packages:

dnf list installed

To install a package:

dnf install <package>

To remove a package:

dnf remove <package>

To search for available packages:

dnf search <package>