Update cheatsheets

This commit is contained in:
ivuorinen
2024-11-27 00:18:24 +00:00
parent f717d6776b
commit ead6469b35
6 changed files with 85 additions and 1 deletions

29
tldr/linux/dnf-group Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# dnf group
> Manage virtual collections of packages on Fedora-based systems.
> More information: <https://manned.org/man/dnf-group>.
- List DNF groups, showing installed and uninstalled status in a table:
`dnf group list`
- Show DNF group info, including repository and optional packages:
`dnf group info {{group_name}}`
- Install DNF group:
`dnf group install {{group_name}}`
- Remove DNF group:
`dnf group remove {{group_name}}`
- Upgrade DNF group:
`dnf group upgrade {{group_name}}`