mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 17:42:07 +00:00
30 lines
587 B
Plaintext
30 lines
587 B
Plaintext
---
|
|
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/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}}`
|