28 December 2020
1 min read

How to Install GNOME on Linux Mint 20

Installing an additional desktop environment allows more user experience without installing another Linux distro. Gnome is the default desktop environment for many Linux distributions. Gnome is based on GTK+ and has a new release every 6 months.

Linux Mint by default supports Cinnamon, MATE, or Xfce desktop environment. Cinnamon and Mate are a fork of GNOME with a codebase of GNOME 3 and GNOME 2 respectively. Switching desktop

In this article, I will guide how to install the GNOME 3 (gnome-shell) desktop in your Linux Mint 20.

Read Also: How to Install XFCE Desktop Environment in Linux Mint

Prerequisites

  • Linux Mint installed ( Cinnamon, MATE, or Xfce)

1) Install GNOME on Linux MINT using apt

First, you need to upgrade all packages in the Linux Mint system. So, open the terminal and issue the following command.

Get a list of all available packages and their versions:

$ sudo apt update

Now install all packages that have new versions:

$ sudo apt upgrade -y

In order to install the Gnome environment, you need to install gnome-session and gdm3. Use apt to install them.

$ sudo apt install gnome-session gdm3 -y

Just accept the message information. Click on ok

Again another screen prompt, choose either gdm3 or lightdm.  Gdm3 is GNOME display manager that provides graphical login and handles user authentication. It uses a minimal version of gnome-shell due to which you will feel GNOME3 session. Similarly, lightdm is a cross-desktop display manager which is lightweight and supports different display technologies.

Here,  I’m going to choose gdm3.

It can take some time to install all the dependencies and packages. When everything finishes, reboot your system.

$ sudo reboot

When the login screen appears, choose Gnome and enter your password.

Your desktop should be changed as shown in the below picture.

To check gnome version go to Settings and open Details/About panel. From the repository, it has installed Gnome 3.36.8 version.

To check version from the terminal, type:

$ gnome-shell --version

2. Install GNOME Desktop Using tasksel

An alternative way to install Gnome is by using tasksel. If tasksel is not installed on your system, first install it using:

$ sudo apt install tasksel

Now, to install Ubuntu desktop (gnome 3), type:

$ sudo tasksel install ubuntu-desktop

Remove GNOME on Mint

If you want to remove GNOME from Mint 20 then follow the procedure.

  1. Log in to another desktop environment.
  2. Issue following command to remove GNOME package.
$ sudo apt purge gnome-session gdm3 -y $ sudo apt autoremove -y

Conclusion

Many Linux distributions such as  Ubuntu, Fedora, Debian, POP OS use GNOME by default. You can easily install Gnome if it doesn’t come with the distribution.

In this article, we learned how to install Gnome on Mint Linux 20. Please feel free to comment on your experience and give us valuable feedback.

Bobbin Zachariah

Bobbin Zachariah

Bobbin Zachariah is the editor-in-chief of Linoxide and has an experienced team of Linux enthusiastic authors who makes this blog awesome. Linoxide is one of the top 20 Linux Blog by whizlabs.

Leave a Reply

Your email address will not be published.

Previous Story

Kitty – A Powerful GPU Based Terminal Emulator

Next Story

How to Read File Line by Line in Bash Script [3 Methods]

Latest from Blog

Top 8 Reasons to Use Garuda Linux

Have you been going back and forth between multiple Linux flavors in search of an exciting experience? Or perhaps you are coming from a Windows or MAC environment and want to try

How to Rename Multiple Files in Linux

In a Linux system, you can easily rename a file using mv command. But, if you have multiple files which you want to rename, in this situation you need some extra tools

How to Install TensorFlow on Ubuntu 20.04

Tensorflow is an open-source platform for machine learning and artificial intelligence. It is developed by the Google Brain team. It contains tools, libraries, and community resources for developers to build ML powered
Go toTop