3 Simple Steps: How to Install Google Chrome on Linux Terminal

A step-by-step guide to installing Google Chrome on a Linux system using the command terminal

Imagine a world where installing applications is as easy as a few clicks of a button. That’s the power of Chrome on Terminal Linux. With its intuitive interface and vast repository of apps, Chrome has become the go-to platform for millions of users worldwide. But what if you’re not a fan of using a graphical user interface? What if you prefer the command line? Well, fear not, for Chrome can also be installed on Terminal Linux. In this comprehensive guide, we’ll walk you through the step-by-step process of installing Chrome on Terminal Linux, empowering you with the knowledge to harness the full potential of this versatile platform.

Before embarking on this installation journey, let’s take a moment to gather our tools. To successfully install Chrome on Terminal Linux, you’ll need a stable internet connection, a terminal emulator, and the wget package. If you don’t have wget installed, don’t fret; simply follow these simple commands to rectify the situation:
“`
sudo apt-get update
sudo apt-get install wget
“`
Now that we have our tools ready, it’s time to dive into the installation process. The following steps will guide you through each phase, ensuring a smooth and successful installation.

1. **Acquire the Chrome Deb Package**: Begin by utilizing wget to retrieve the Chrome Deb package. Execute the following command, ensuring that you replace “latest” with the desired Chrome version:
“`
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
“`
2. **Install the Chrome Deb Package**: Once the download is complete, proceed to install the Chrome Deb package using the dpkg command. Execute the following command:
“`
sudo dpkg -i google-chrome-stable_current_amd64.deb
“`
3. **Fix Broken Dependencies**: After installing the Chrome Deb package, you may encounter broken dependencies. To resolve this issue, execute the following command:
“`
sudo apt-get install -f
“`

Prerequisites for Installing Chrome on Terminal Linux

Before embarking on the installation of Google Chrome on a Linux system via the terminal, it is essential to ensure that certain prerequisites are met to guarantee a seamless and successful process. These prerequisites include:

Operating System Compatibility

To run Chrome on a Linux system, you must have a compatible operating system. Chrome supports a wide range of Linux distributions, including Ubuntu, Debian, Fedora, CentOS, and openSUSE. Check the official Chrome download page for the most current list of supported operating systems.

32-bit vs. 64-bit

Determine whether your Linux system is running a 32-bit or 64-bit architecture. Chrome provides separate installers for each architecture. You can check your system’s architecture by opening a terminal and typing the following command:

getconf LONG_BIT

If the output is 32, your system is running a 32-bit architecture. If the output is 64, your system is running a 64-bit architecture.

Required Libraries

Chrome requires specific libraries to function properly. These libraries include glibc, libstdc++, libX11, and libXss. Ensure that these libraries are installed on your system before proceeding with the Chrome installation.

Step 3: Import Google Signing Key

Before you can install Chrome, you’ll need to import the Google signing key. This will allow your system to verify that Chrome is a legitimate application from Google. To import the signing key, follow these steps:

  1. Download the Google signing key from the following URL: https://dl.google.com/linux/linux_signing_key.pub
  2. Open a terminal window and navigate to the directory where you downloaded the signing key.
  3. Import the signing key using the following command:

    bash
    sudo apt-key add linux_signing_key.pub

Once you have imported the Google signing key, you can proceed to install Chrome.

Install Chrome

To install Chrome, follow these steps:
sudo apt update
sudo apt install google-chrome-stable

Command Description
sudo apt update Updates the list of available packages.
sudo apt install google-chrome-stable Installs the stable version of Chrome.

Once the installation is complete, you can launch Chrome by clicking on the Chrome icon in your applications menu.

How to Install Chrome on Terminal Linux

Google Chrome is a web browser developed by Google. It is available for various operating systems, including Linux. To install Chrome on Terminal Linux, follow these steps:

  1. Open a Terminal window.

  2. Download the Chrome deb package from the official Google website:

    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

  3. Install the Chrome deb package using the dpkg command:

    sudo dpkg -i google-chrome-stable_current_amd64.deb

  4. Fix any dependency issues using the apt command:

    sudo apt install -f

  5. Launch Chrome by typing google-chrome in the Terminal window.

People Also Ask

How do I know if Chrome is installed on Linux?

To check if Chrome is installed on your Linux system, run the following command in the Terminal window:

google-chrome --version

If Chrome is installed, it will display the version number of the browser.

How do I update Chrome on Terminal Linux?

To update Chrome on Terminal Linux, run the following command in the Terminal window:

sudo apt update && sudo apt upgrade

This command will check for updates and install them, including any updates for Chrome.

How do I uninstall Chrome from Terminal Linux?

To uninstall Chrome from Terminal Linux, run the following command in the Terminal window:

sudo apt remove google-chrome-stable

This command will remove the Chrome package from your system.