# How to Install Google Chrome on Linux Ubuntu


Installing Google Chrome on Linux Ubuntu is a common task for many users who want a fast, reliable browser. If you’re switching to Ubuntu or setting up a new system, you might wonder how to get Chrome running smoothly. I’ll walk you through the process step-by-step, so you can enjoy Chrome’s features on your Ubuntu machine without hassle.

Whether you’re a beginner or have some Linux experience, this guide breaks down everything clearly. You’ll learn how to download, install, and update Google Chrome on Ubuntu. Plus, I’ll share tips to troubleshoot common issues. Let’s get your browser ready to go!

## Why Choose Google Chrome on Ubuntu?

Google Chrome is one of the most popular web browsers worldwide. On Ubuntu, it offers several advantages:

- **Speed and Performance:** Chrome is optimized for fast browsing and smooth video playback.
- **Security:** Regular updates keep your browsing safe from threats.
- **Extensions and Sync:** Access thousands of extensions and sync bookmarks across devices.
- **Compatibility:** Some websites and apps work better on Chrome than other browsers.

Ubuntu comes with Firefox pre-installed, but if you prefer Chrome’s interface or need it for specific tasks, installing it is straightforward.

## Step 1: Download Google Chrome for Ubuntu

Before installing, you need the official Chrome package for Ubuntu. Here’s how to get it:

1. Open your current browser (Firefox or any other).
2. Visit the official Google Chrome download page: [https://www.google.com/chrome/](https://www.google.com/chrome/)
3. Click the **Download Chrome** button.
4. Select the **64-bit .deb (for Debian/Ubuntu)** option.
5. Click **Accept and Install** to download the `.deb` file.

The `.deb` file is the installation package for Debian-based systems like Ubuntu. It contains everything needed to install Chrome.

## Step 2: Install Google Chrome Using the Terminal

Ubuntu users often prefer the terminal for installations because it’s fast and reliable. Here’s how to install Chrome using the `.deb` file you downloaded:

1. Open the **Terminal** by pressing `Ctrl + Alt + T`.
2. Navigate to the folder where the `.deb` file is saved. Usually, it’s in the **Downloads** folder:

   ```bash
   cd ~/Downloads
   ```

3. Install the package using the `dpkg` command:

   ```bash
   sudo dpkg -i google-chrome-stable_current_amd64.deb
   ```

4. If you see any dependency errors, fix them by running:

   ```bash
   sudo apt-get install -f
   ```

This command installs any missing dependencies required by Chrome.

5. After installation, you can launch Chrome by typing:

   ```bash
   google-chrome
   ```

Or find it in your applications menu.

## Step 3: Install Google Chrome Using the GUI (Graphical User Interface)

If you prefer not to use the terminal, you can install Chrome using Ubuntu’s Software Center:

1. Open the **Files** app and go to your **Downloads** folder.
2. Right-click the `google-chrome-stable_current_amd64.deb` file.
3. Select **Open With Software Install** or **Open With Ubuntu Software**.
4. Click the **Install** button.
5. Enter your password when prompted.
6. Wait for the installation to complete.
7. Launch Chrome from the applications menu.

This method is simple and user-friendly, especially for those new to Linux.

## Step 4: Set Google Chrome as the Default Browser (Optional)

If you want Chrome to open links by default, follow these steps:

1. Open **Settings** on Ubuntu.
2. Go to **Default Applications**.
3. Under **Web**, select **Google Chrome** from the dropdown menu.

Now, any web link you click will open in Chrome automatically.

## Step 5: Keep Google Chrome Updated on Ubuntu

Google Chrome updates regularly to improve security and add features. On Ubuntu, Chrome installs its own repository to manage updates automatically. Here’s how to ensure updates work:

- When you installed Chrome via the `.deb` package, it added Google’s repository to your system.
- Ubuntu’s **Software Updater** will check for Chrome updates along with other system updates.
- To update manually, run:

  ```bash
  sudo apt update
  sudo apt --only-upgrade install google-chrome-stable
  ```

This keeps your browser secure and running smoothly.

## Troubleshooting Common Installation Issues

Sometimes, you might face problems installing Chrome on Ubuntu. Here are common issues and fixes:

- **Dependency Errors:** If `dpkg` reports missing dependencies, run `sudo apt-get install -f` to fix them.
- **Broken Packages:** Use `sudo apt --fix-broken install` to repair broken installations.
- **Chrome Not Launching:** Try running `google-chrome` from the terminal to see error messages. Reinstall if needed.
- **Missing `.deb` File:** Ensure you downloaded the correct `.deb` file for your Ubuntu version and architecture (64-bit).

If problems persist, check Ubuntu forums or Google’s help pages for specific solutions.

## Alternatives to Google Chrome on Ubuntu

If you want a Chromium-based browser but prefer open-source software, consider these options:

- **Chromium Browser:** The open-source version of Chrome without proprietary features.
- **Brave Browser:** Focuses on privacy and blocks ads by default.
- **Vivaldi:** Highly customizable browser built on Chromium.

These browsers are easy to install via Ubuntu’s package manager and offer similar performance.

## Summary Table: Installing Google Chrome on Ubuntu

| Step                     | Command / Action                                  | Notes                          |
|--------------------------|-------------------------------------------------|--------------------------------|
| Download Chrome          | Visit https://www.google.com/chrome/             | Choose 64-bit `.deb` file       |
| Install via Terminal     | `sudo dpkg -i google-chrome-stable_current_amd64.deb` | Fix dependencies with `sudo apt-get install -f` |
| Install via GUI          | Right-click `.deb` file → Open with Software Install | User-friendly method            |
| Set Default Browser      | Settings → Default Applications → Web → Chrome  | Optional                       |
| Update Chrome            | `sudo apt update && sudo apt --only-upgrade install google-chrome-stable` | Keeps Chrome up to date        |

## Conclusion

Installing Google Chrome on Linux Ubuntu is easier than you might think. Whether you use the terminal or the graphical interface, you can get Chrome up and running in just a few minutes. Chrome’s speed, security, and compatibility make it a great choice for Ubuntu users who want a reliable browser.

Remember to keep Chrome updated to enjoy the latest features and security patches. If you run into issues, Ubuntu’s community and official resources can help you troubleshoot. Now that you know how to install Chrome, you can browse the web with confidence on your Ubuntu system.

### FAQs

### How do I download Google Chrome on Ubuntu?

Visit the official Google Chrome website, select the 64-bit `.deb` package for Ubuntu, and download it to your computer.

### Can I install Google Chrome without using the terminal?

Yes, you can install Chrome by right-clicking the downloaded `.deb` file and opening it with Ubuntu Software Center for a graphical installation.

### How do I update Google Chrome on Ubuntu?

Chrome adds its own repository during installation. You can update it via Ubuntu’s Software Updater or by running `sudo apt update` and `sudo apt --only-upgrade install google-chrome-stable` in the terminal.

### What if Google Chrome won’t start after installation?

Try launching Chrome from the terminal to see error messages. Running `sudo apt-get install -f` can fix missing dependencies. Reinstalling Chrome may also help.

### Is Google Chrome free to use on Ubuntu?

Yes, Google Chrome is free to download and use on Ubuntu and other operating systems.
