Skip to main content

Command Palette

Search for a command to run...

How to Install Chrome on Linux

Updated
5 min read
How to Install Chrome on Linux

Linux users often appreciate its flexibility and security, but when it comes to browsing, having a dependable browser is essential. Google Chrome stands out as a fast, reliable, and feature-rich option. Installing Chrome on Linux might seem a little different compared to Windows or macOS, but it’s straightforward once you know the steps.

This guide will walk you through the process of installing Chrome on popular Linux distributions like Ubuntu, Debian, Fedora, and others. Whether you’re a beginner or someone switching from another operating system, you’ll find this guide helpful. Let’s get started.


Why Install Chrome on Linux?

Chrome offers several advantages that make it a top choice for Linux users:

  1. Speed and Performance: Chrome is optimized for speed, handling multiple tabs and extensions effortlessly.

  2. Features: Access to Google services, extensions from the Chrome Web Store, and built-in developer tools.

  3. Cross-Platform Sync: Sync bookmarks, passwords, and settings across devices with a Google account.

  4. Web Compatibility: Chrome supports the latest web technologies, ensuring seamless browsing on modern sites.

Now, let’s dive into the installation process.


Method 1: Install Chrome on Debian-Based Distros (e.g., Ubuntu, Linux Mint)

For Debian-based distributions, you can download and install Chrome using a .deb package.

Steps to Install Chrome on Debian-Based Linux

  1. Download Chrome:

    • Open your default browser and visit the official Chrome website.

    • Click Download Chrome and choose the .deb package.

  2. Install the .deb Package:

    • Locate the downloaded file in your Downloads folder.

    • Open a terminal and run the following command:

        sudo dpkg -i google-chrome-stable_current_amd64.deb
      
    • If you encounter dependency issues, fix them with:

        sudo apt-get install -f
      
  3. Launch Chrome:

    • Open Chrome from the applications menu or by typing google-chrome in the terminal.

Method 2: Install Chrome on Fedora or RHEL-Based Distros

For Fedora and other Red Hat-based distributions, you’ll need the .rpm package.

Steps to Install Chrome on Fedora or RHEL-Based Linux

  1. Download the Chrome .rpm File:

  2. Install the .rpm Package:

    • Open your terminal and navigate to the Downloads folder:

        cd ~/Downloads
      
    • Install the package using:

        sudo dnf install google-chrome-stable_current_x86_64.rpm
      
  3. Start Chrome:

    • Launch Chrome from your applications menu or by typing google-chrome in the terminal.

Method 3: Add Chrome Repository for Updates

To keep Chrome updated automatically, you can add its repository to your package manager.

For Debian-Based Systems:

  1. Open a terminal and edit the repository sources:

     sudo nano /etc/apt/sources.list.d/google-chrome.list
    
  2. Add this line:

     deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
    
  3. Update the package list and install Chrome:

     sudo apt-get update
     sudo apt-get install google-chrome-stable
    

For Fedora/RHEL-Based Systems:

  1. The repository is added automatically when you install Chrome using the .rpm package.

  2. To check for updates, run:

     sudo dnf update google-chrome-stable
    

Method 4: Use a Snap Package (Universal Approach)

If your distribution supports Snap, you can install Chrome as a Snap package.

Steps to Install Chrome via Snap

  1. Enable Snap Support:

    • On Debian-based systems:

        sudo apt update
        sudo apt install snapd
      
  2. Install Chrome:

    • Run the following command:

        sudo snap install chromium
      
    • Note: The Snap version is Chromium, an open-source version of Chrome without Google-specific features.

  3. Launch Chromium:

    • Open it from your applications menu.

Troubleshooting Common Issues

1. Chrome Installation Fails

  • Ensure your system has all necessary dependencies installed. Use:

      sudo apt-get install -f
    

2. Chrome Won’t Launch

  • Try running Chrome in the terminal to see error messages:

      google-chrome
    
  • If you see errors related to missing libraries, install them using your package manager.

3. Slow Performance

  • Disable unnecessary extensions to improve performance.

4. Conflicts with Chromium

  • Uninstall Chromium before installing Chrome to avoid conflicts:

      sudo apt remove chromium-browser
    

Tips for Using Chrome on Linux

  1. Enable Sync: Log in with your Google account to sync bookmarks, passwords, and extensions across devices.

  2. Keep Chrome Updated: Use your package manager to check for updates regularly.

  3. Explore Extensions: Install useful tools from the Chrome Web Store.

  4. Keyboard Shortcuts: Use shortcuts like Ctrl + T for new tabs or Ctrl + Shift + T to reopen closed tabs.


Benefits of Installing Chrome on Linux

  1. Seamless Browsing: Enjoy fast and smooth performance across all types of websites.

  2. Access to Google Services: Easily use tools like Gmail, Drive, and Docs.

  3. Web Development: Chrome’s built-in developer tools are great for debugging and testing.

  4. Customizable Experience: Tailor Chrome to your needs with themes and extensions.


Conclusion

Installing Chrome on Linux may seem slightly different than on other operating systems, but it’s not difficult. Whether you’re using a Debian-based system like Ubuntu or a Fedora-based distribution, the steps are straightforward. Once installed, you can enjoy all the features and benefits Chrome has to offer.

By following this guide, you’ll have Chrome up and running in no time. Remember to keep it updated, explore extensions, and make the most of Chrome’s robust features. Happy browsing!


FAQs

How do I download Chrome for Linux?

Visit the official Chrome website and select the appropriate package (.deb for Debian-based systems or .rpm for Fedora-based systems).

Is Chrome available on all Linux distributions?

Yes, Chrome supports most major Linux distributions, including Ubuntu, Debian, Fedora, and RHEL.

Can I install Chrome via the terminal?

Yes, you can download the installation package and use commands like sudo dpkg -i (for .deb) or sudo dnf install (for .rpm) to install it.

How do I update Chrome on Linux?

If you’ve added the Chrome repository, updates are managed through your package manager. Use sudo apt update or sudo dnf update.

What’s the difference between Chrome and Chromium on Linux?

Chromium is the open-source version of Chrome, while Chrome includes additional Google-specific features like account sync and proprietary codecs.

Also read -

exiting incognito mode on chrome for iphone a quick guide

how to add trusted sites in chrome

how to change the new tab page on chrome

More from this blog

W

WebTechnoto | Chrome & Web Browser Tips and Tricks

158 posts