mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-14 16:48:32 +00:00
Update cheatsheets
This commit is contained in:
42
linux/dnf
Normal file
42
linux/dnf
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# dnf
|
||||
|
||||
> Package management utility for RHEL, Fedora, and CentOS (replaces yum).
|
||||
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
|
||||
> More information: <https://dnf.readthedocs.io>.
|
||||
|
||||
- Upgrade installed packages to the newest available versions:
|
||||
|
||||
`sudo dnf upgrade`
|
||||
|
||||
- Search packages via keywords:
|
||||
|
||||
`dnf search {{keyword1 keyword2 ...}}`
|
||||
|
||||
- Display details about a package:
|
||||
|
||||
`dnf info {{package}}`
|
||||
|
||||
- Install a new package (use `-y` to confirm all prompts automatically):
|
||||
|
||||
`sudo dnf install {{package1 package2 ...}}`
|
||||
|
||||
- Remove a package:
|
||||
|
||||
`sudo dnf remove {{package1 package2 ...}}`
|
||||
|
||||
- List installed packages:
|
||||
|
||||
`dnf list --installed`
|
||||
|
||||
- Find which packages provide a given command:
|
||||
|
||||
`dnf provides {{command}}`
|
||||
|
||||
- View all past operations:
|
||||
|
||||
`dnf history`
|
||||
Reference in New Issue
Block a user