Intercambiar entorno de escritorio

Equipo Documental de Fedora Versión F36 and newer Last review: 2025-02-11
Varias variantes de Fedora Linux diferentes (Spin/Lab) tienen diferentes entornos por defecto. Por ejemplo, la estación de trabajo de Fedora utiliza GNOME como su entorno de escritorio por defecto, mientras que el spin KDE utilizará KDE. Independientemente del medio de instalación que haya utilizado para instalar Fedora Linux, puede fácilmente intentar y cambiar a cualquiera de los distintos otros entornos de escritorios que estén disponibles sin afectar con su entorno de escritorio actual.

Installing additional desktop environments

You can list available desktop environments using the default package manager, dnf.

Since Fedora 41, in a terminal use the dnf environment list command to list all available desktop environments:

dnf environment list --available | grep desktop

For older Fedoras, use the 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

Switching desktop environments using a graphical user interface (GUI)

First, install the desired desktop environment as described in Installing additional desktop environments.

You can login to a different desktop for a single session using the login manager. For example, for the Gnome Display Manager (GDM) that is used by default on the Fedora Linux Workstation:

  1. On the login screen, select a user from the list.

  2. Click on the Preferences icon right below the password field. A window appears with a list of several different desktop environments.

  3. Choose one, and enter password as usual.

Login Screen

Using switchdesk

You also change your desktop environment using the switchdesk tool. It also allows you to change default desktop environment for individual users, and for all users.

  1. Install the switchdesk and switchdesk-gui packages:

    dnf install switchdesk switchdesk-gui
  2. Run the Desktop Switching Tool application.

  3. Select the default desktop from the list of available desktop environments, and confirm.

Desktop Switching Tool

Switching desktop environments using the command line interface (CLI)

First, install the desired desktop environment as described in Installing additional desktop environments.

Install the switchdesk package:

dnf install switchdesk

Pass the selected desktop environment as the only argument to the switchdesk command, for example:

switchdesk kde

See the switchdesk(1) man page for more information.

Manually changing the default desktop

You can also change your default desktop environment using the /etc/sysconfig/desktop system configuration file. If this file does not exists, please create it. This file specifies the desktop for new users and the display manager to run when entering runlevel 5.

Please create/edit it using your preferred text editor. Note that you will need administrator (root) privileges to create or edit this file.

Correct values are:

DESKTOP="<value>", where <value> is one of the following:

  1. GNOME - Selects the GNOME desktop environment.

  2. KDE - Selects the KDE desktop environment.

DISPLAYMANAGER="<value>", where <value> is one of the following:

  1. GNOME - Selects the GNOME Display Manager.

  2. KDE - Selects the KDE Display Manager.

  3. XDM - Selects the X Display Manager.