Do you think IIT Guwahati certified course can help you in your career?
No
Introduction
Linux is an open-source operating system kernel based on Unix. Some commonly used Linux distributions are Ubuntu, Debian, Arch, etc.
In this article, you will learn how to install Chrome on Linux, specifically on the Ubuntu distribution.
Methods for installing Chrome on Linux
There are the following two ways of installing Chrome on Linux:-
Method 1: Using Terminal
This method requires the least amount of user interaction. You can use this to install Chrome using just a few terminal commands.
Method 2: Using GUI
This method is similar to installing Chrome on other operating systems, and it simply involves using the default browser for downloading and installing Chrome.
Let us see both the ways to install Chrome:
Installing Chrome on Linux using the Terminal
For users familiar with the Terminal installing Chrome is a straightforward process. It only involves a few commands and minimal user interaction.
Following are the steps to install Chrome on Ubuntu using the terminal:-
Step 1: Installing wget utility
wget is a command line utility used for downloading files without user intervention. The latest Ubuntu version comes with wget pre-installed.
Use the following command to check if you have wget or not:-
Command
wget –version
Output
If you don’t see something similar to the output above, you should install wget using the following command:-
Command
sudo apt install wget
Once it is installed, you can move to the next step.
Step 2: Downloading the Chrome Package
We will now use the wget utility to download the latest .deb package of Chrome.
Click on the “Download Chrome” button to download the .deb package.
Output
Step 3: Installing Chrome
Open the downloads folder, double-click on the downloaded package, and open it with “Software Install”.
The installer window will appear, simply click on the install button and wait for it to install.
Step 4: Launching Chrome
Use the following command to launch the freshly installed version of Google Chrome.
Command
google-chrome
Output
Frequently Asked Questions
What is open-source software?
Open-source software is a type of computer software whose source code is available for everyone to use, modify and distribute. It is usually used for developing software collaboratively with a community of developers. Some examples of open-source software are GIMP, KiCAD, Mozilla Firefox, LibreOffice, etc.
What is a Linux distribution?
A Linux distribution is a complete operating system based on the Linux kernel. It combines various software packages with the Linux kernel, such as desktop environments, system utilities, and package management tools.
What is a Kernel?
A Kernel is the core component of an operating system. It is an intermediary between the computer hardware and the software application in the user space.
Conclusion
In this article, you learned how to install Chrome on Linux using the terminal and the GUI.