How To Install Google Chrome On Ubuntu

How To Install Google Chrome On Ubuntu

Reading time1 min
#Technology#Software#Browsing#Ubuntu#Chrome#Linux

Title: How to Install Google Chrome on Ubuntu: A Simple Step-by-Step Guide

Rationale:
If you’re switching to Ubuntu or just setting up a fresh installation, you might want to install Google Chrome for a familiar and reliable browsing experience. Although Ubuntu comes with Firefox pre-installed, Google Chrome offers some extra features like seamless syncing with your Google account, better support for some web apps, and native video playback options. This guide will walk you through the easiest ways to get Chrome up and running on your Ubuntu system.

Hook:
Want the speed and convenience of Google Chrome on your Ubuntu machine but not sure where to start? Follow this straightforward tutorial to install Google Chrome with absolutely no headaches — no command-line confusion, no broken dependencies!


How to Install Google Chrome on Ubuntu

Google Chrome isn’t available in the official Ubuntu repositories by default because it’s proprietary software. But installing it is still pretty straightforward. You have two common options: using the graphical interface or command line.


Method 1: Installing Google Chrome Using the Ubuntu Software Center (Graphical Method)

If you prefer clicking over typing, here’s how to install Google Chrome using the GUI:

  1. Download the Google Chrome .deb package:

    • Open your current web browser (Firefox).
    • Go to the official Chrome download page: https://www.google.com/chrome/
    • Click Download Chrome.
    • Select 64 bit .deb (for Debian/Ubuntu) and click Accept and Install.
    • Save the file when prompted.
  2. Install the downloaded package:

    • Navigate to your Downloads folder using the file manager.
    • Double-click the google-chrome-stable_current_amd64.deb file.
    • This will open the Ubuntu Software Center.
    • Click Install.
    • Enter your user password when prompted.
  3. Launch Google Chrome:

    • After installation completes, open the Activities menu at the top left.
    • Search for Chrome.
    • Click the icon to launch your new browser.
    • You can optionally set it as your default browser and sign in to sync bookmarks and settings.

Method 2: Installing Google Chrome Using the Terminal (Command Line Method)

If you’re comfortable with the terminal, this approach is faster, especially if you want to automate the setup or script it for multiple machines.

  1. Update package lists:

    sudo apt update
    
  2. Download the Chrome .deb package using wget:

    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    
  3. Install the downloaded package using dpkg:

    sudo dpkg -i google-chrome-stable_current_amd64.deb
    
  4. Fix any dependency issues:

    Sometimes, the above command may show dependency errors. Fix them by running:

    sudo apt -f install
    

    This will install any missing dependencies required by Chrome.

  5. Launch Google Chrome:

    Run the command:

    google-chrome
    

    Or start it via the desktop environment’s application launcher by searching for “Chrome”.


Bonus: Keep Google Chrome Up to Date Automatically

When you install Chrome using the .deb package, Google adds its repository to your system by default. This means:

  • Chrome updates will be installed whenever you run sudo apt update && sudo apt upgrade.
  • You don’t need to manually download the package again in the future.

Verify that the repo was added by checking:

cat /etc/apt/sources.list.d/google-chrome.list

You should see a line like:

deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

Troubleshooting Tips

  • “Google Chrome not launching” error: Try running Chrome from terminal to see error messages: google-chrome. If missing dependencies are reported, run sudo apt -f install.
  • “Permission denied” when installing: Make sure you prefixed commands with sudo.
  • Chrome warns about sandbox issues: Install necessary packages like libnss3 or run Chrome with --no-sandbox option (not recommended for regular use).

Summary

Installing Google Chrome on Ubuntu is easy and painless, whether you prefer GUI or terminal:

  • Download the official .deb package from Google.
  • Use Ubuntu Software Center or dpkg to install.
  • Chrome will auto-update via Google’s repository.

Enjoy browsing with Chrome’s speed, extensions, and Google ecosystem integration right on your Ubuntu PC!


If you found this guide helpful, feel free to share it with friends switching to Ubuntu or leave a comment if you run into any trouble!


Would you like me to help with images/screenshots or a shorter version?