quick-docs/modules/ROOT/pages/_partials/proc_installing-additional-desktop-enviroments.adoc

26 lines
614 B
Text
Raw Normal View History

2017-12-14 15:52:34 +00:00
[[installing-desktop-environments]]
= Installing additional desktop environments
You can list available desktop environments using the default package manager, [code]`dnf`.
2023-01-26 10:08:23 +00:00
In a terminal use the [code]`dnf group list` command to list all available package groups:
2017-12-14 15:52:34 +00:00
----
2023-01-26 10:08:23 +00:00
$ dnf group list --available *desktop
...
2017-12-14 15:52:34 +00:00
----
Install the required desktop environment using the `dnf install` command.
Ensure to prefix with the `@` sign, for example:
2017-12-14 15:52:34 +00:00
----
# dnf install @kde-desktop-environment
----
You can also use the full name using the `groupinstall` command:
----
# dnf groupinstall "KDE Plasma Workspaces"
----