mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 22:51:13 +03:00
364 B
364 B
dnf
Package management utility for RHEL, Fedora, and CentOS (replaces yum).
- Install a new package:
sudo dnf install {{package}}
- Install a new package and assume yes to all questions:
sudo dnf -y install {{package}}
- Remove a package:
sudo dnf remove {{package}}
- Upgrade installed packages to newest available versions:
sudo dnf upgrade