mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-24 13:32:42 +00:00
996e833893
If you filter on '*desktop' you won't get KDE, because it's named 'KDE Plasma Workspaces', no 'desktop' there. ;) So, insteed run the command with -v (to get the actual names instead of the pretty display names), which does include desktop. ;) Signed-off-by: Kevin Fenzi <kevin@scrye.com>
24 lines
661 B
Text
24 lines
661 B
Text
[[installing-desktop-environments]]
|
|
= Installing additional desktop environments
|
|
|
|
You can list available desktop environments using the default package manager, [code]`dnf`.
|
|
In a terminal 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
|
|
----
|
|
|
|
You can also use the full name using the `groupinstall` command to install the complete package set:
|
|
|
|
----
|
|
# dnf groupinstall "KDE Plasma Workspaces"
|
|
----
|
|
|