In this tutorial, we will see how to install Chrome on Linux Mint. Google Chrome is a popular web browser that is suitable for surfing amazing websites like this one. We will also cover a better alternative to Chrome that is easier to install.
Let’s go over the steps to install Google Chrome, which is Google’s version of the original open-source Chromium browser. Since Google Chrome isn’t natively available in the package repositories, we need to add their Linux repos and install the package from there.
Before we proceed, install Google’s Linux package signing Key. This key will automatically configure the repository settings necessary to keep your Google Linux applications up-to-date.
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
For installing Chrome you need to add Chrome repository to your system source. You can do this with the command:
sudo add-apt-repository "deb http://dl.google.com/linux/chrome/deb/ stable main"
You may also add the repository manually by editing your /etc/apt/sources.list file.
After you add the Chrome repository in the last step you need to do an apt-update. The command for doing that is:
sudo apt update
After going through the commands above you are ready to finally install Chrome. The command for doing that is :
sudo apt install google-chrome-stable
This command installs the stable version of Chrome.
While installing you will be prompted to grant permission to proceed with the installation. Press ‘y’ to continue.
That is it! Now you can run Google Chrome by typing in :
google-chrome
Or you can use the GUI to go to your applications and find Google Chrome there.
To uninstall Google Chrome use the command :
sudo apt remove google-chrome-stable
This will successfully remove Google Chrome from your system.
Chromium is an open-source version of Chrome. It is present by default in the Linux repositories. So you won’t need to add it explicitly.
To install Chromium you just need to run the command :
sudo apt install chromium-browser
One command and Chromium is ready to go!
In this tutorial, we saw how Chrome can be installed on Linux systems. Apart from that we also saw Chromium, a better open-source version of Chrome that is readily available on Linux.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.