diff --git a/source/clear-linux/tutorials/bare-metal-install/bare-metal-install.rst b/source/clear-linux/tutorials/bare-metal-install/bare-metal-install.rst index 2252b55e..792baf5c 100644 --- a/source/clear-linux/tutorials/bare-metal-install/bare-metal-install.rst +++ b/source/clear-linux/tutorials/bare-metal-install/bare-metal-install.rst @@ -299,23 +299,29 @@ Enter your new `` and the password you created earlier. You should now be in the home directory of ``. The bundle `os-clr-on-clr`_ contains the majority of applications that a developer or system administrator would want but it does not include a graphical user -interface. The `os-utils-gui` bundle includes the XFCE graphical user -interface. +interface. The `desktop` bundle includes the Gnome DesktopManager and +additional supporting applications. To test the :command:`sudo` command and ensure we set it up correctly, we can -install the XFCE :abbr:`GUI (graphical user interface)`. +install the Gnome Desktop Manager (gdm) and start it. -To install XFCE using swupd, enter the following command: +To install Gnome using swupd, enter the following command: .. code-block:: console - sudo swupd bundle-add os-utils-gui + sudo swupd bundle-add desktop -To start xfce, enter the following command: +To start Gnome, enter the following command: .. code-block:: console - startx + sudo systemctl start gdm + +The Gnome Desktop should start as shown in figure 1: +.. figure:: figures/gnomedt.png + :alt: Gnome Desktop + + Figure 1: Select :guilabel:`Gnome Desktop` **Congratulations!** diff --git a/source/clear-linux/tutorials/bare-metal-install/figures/gnomedt.png b/source/clear-linux/tutorials/bare-metal-install/figures/gnomedt.png new file mode 100644 index 00000000..d2ae5de2 Binary files /dev/null and b/source/clear-linux/tutorials/bare-metal-install/figures/gnomedt.png differ