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`.
|
|
|
|
In a terminal use the [code]`dnf grouplist` command to list all available package groups:
|
2017-12-14 15:52:34 +00:00
|
|
|
|
|
|
|
----
|
|
|
|
$ dnf grouplist -v
|
|
|
|
Available Environment Groups:
|
|
|
|
Fedora Custom Operating System (custom-environment)
|
|
|
|
Minimal Install (minimal-environment)
|
|
|
|
Fedora Server Edition (server-product-environment)
|
|
|
|
Fedora Workstation (workstation-product-environment)
|
|
|
|
Fedora Cloud Server (cloud-server-environment)
|
|
|
|
KDE Plasma Workspaces (kde-desktop-environment)
|
|
|
|
Xfce Desktop (xfce-desktop-environment)
|
|
|
|
LXDE Desktop (lxde-desktop-environment)
|
|
|
|
LXQt Desktop (lxqt-desktop-environment)
|
|
|
|
Cinnamon Desktop (cinnamon-desktop-environment)
|
|
|
|
MATE Desktop (mate-desktop-environment)
|
|
|
|
Sugar Desktop Environment (sugar-desktop-environment)
|
2022-07-25 17:38:20 +00:00
|
|
|
Deepin Desktop (deepin-desktop-environment)
|
2017-12-14 15:52:34 +00:00
|
|
|
Development and Creative Workstation (developer-workstation-environment)
|
|
|
|
Web Server (web-server-environment)
|
|
|
|
Infrastructure Server (infrastructure-server-environment)
|
|
|
|
Basic Desktop (basic-desktop-environment)
|
2022-07-25 17:38:20 +00:00
|
|
|
i3 desktop (i3-desktop-environment)
|
|
|
|
Available Groups:
|
|
|
|
3D Printing (3d-printing)
|
|
|
|
Administration Tools (admin-tools)
|
|
|
|
Audio Production (audio)
|
|
|
|
...
|
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
|
|
|
|
|
|
|
You can also use the full name using the `groupinstall` command:
|
|
|
|
|
|
|
|
----
|
|
|
|
# dnf groupinstall "KDE Plasma Workspaces"
|
|
|
|
----
|
|
|
|
|