This patch adapts Installing additional desktop environments page for Fedora 41, i.e. DNF5. This patch also fixes other pages which use DNF4 group commands to use canonical DNF4 syntax. The correct syntax is easier to transit to DNF5 syntax. The patch explicitly does not convert other pages to DNF5 syntax because they usually refer to groups and environements which does not exist anymore in recent Fedoras. https://bugzilla.redhat.com/show_bug.cgi?id=2333129
24 lines
692 B
Text
24 lines
692 B
Text
[[installing-desktop-environments]]
|
|
= Installing additional desktop environments
|
|
|
|
You can list available desktop environments using the default package manager, [code]`dnf`.
|
|
|
|
Since Fedora 41, in a terminal use the [code]`dnf environment list` command to list all available desktop environments:
|
|
|
|
----
|
|
$ dnf environment list --available | grep desktop
|
|
----
|
|
|
|
For older Fedoras, use the [code]`dnf group list` command to list all available desktop environments:
|
|
|
|
----
|
|
$ dnf group list -v --available | grep desktop
|
|
----
|
|
|
|
Install the required desktop environment using the `dnf install` command.
|
|
Ensure to prefix with the `@` sign, for example:
|
|
|
|
----
|
|
# dnf install @kde-desktop-environment
|
|
----
|
|
|