2017-12-14 15:52:34 +00:00
|
|
|
[[installing-desktop-environments]]
|
|
|
|
= Installing additional desktop environments
|
|
|
|
|
2022-07-25 17:38:20 +00:00
|
|
|
You can list available desktop environments using the default package manager, [code]`dnf`.
|
2023-01-26 18:14:22 +00:00
|
|
|
In a terminal use the [code]`dnf group list` command to list all available desktop environments:
|
2017-12-14 15:52:34 +00:00
|
|
|
|
|
|
|
----
|
2023-12-24 18:43:49 +00:00
|
|
|
$ dnf group list -v --available | grep desktop
|
2017-12-14 15:52:34 +00:00
|
|
|
----
|
|
|
|
|
2022-07-25 17:38:20 +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
|
|
|
|
----
|
2022-07-25 17:38:20 +00:00
|
|
|
|
2023-02-11 19:36:26 +00:00
|
|
|
You can also use the full name using the `groupinstall` command to install the complete package set:
|
2022-07-25 17:38:20 +00:00
|
|
|
|
|
|
|
----
|
|
|
|
# dnf groupinstall "KDE Plasma Workspaces"
|
|
|
|
----
|
|
|
|
|