Installing Google Chrome on Ubuntu might seem tricky at first, especially since it’s not available in the default Ubuntu Software Center. But don’t worry — this step-by-step guide will walk you through downloading and installing Google Chrome on Ubuntu 24.04, 22.04, and 20.04 using the Terminal. Whether you’re a beginner or a seasoned Linux user, this guide ensures a smooth and quick installation.
🛠️ Prerequisites
Before you begin, make sure you:
- Have sudo privileges
- Are connected to the internet
- Are using Ubuntu 20.04 or newer (including 24.04)
🔽 Step 1: Download the Google Chrome .deb
Package
Open your Terminal and run:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
This will download the latest stable version of Google Chrome suitable for Debian-based systems like Ubuntu.
📦 Step 2: Install Google Chrome
Install the downloaded .deb
file using the following command:
sudo dpkg -i google-chrome-stable_current_amd64.deb
If you see any dependency issues, run:
sudo apt --fix-broken install
This will automatically install any missing packages.
🚀 Step 3: Launch Google Chrome
Once installed, you can launch Chrome in two ways:
Option 1 – Using Terminal:
google-chrome-stable
Option 2 – From GUI:
Go to Applications > Google Chrome and click to open.
🔁 Step 4: Keep Google Chrome Updated
After installation, Chrome is added to your system’s software sources. You can update it via your regular system updates:
sudo apt update && sudo apt upgrade
🔗 Related Tutorials You May Like
Explore more useful Linux guides:
- 🔧 How to Check CPU Usage in Linux
- ⚙️ How to Install LAMP on Ubuntu 22.04
- 🗂️ How to Zip a Folder in Linux
- 🎮 How to Install Steam on Ubuntu 20.04
❓ Frequently Asked Questions
Q1: Can I install Google Chrome on Ubuntu without using the terminal?
Yes, you can download the .deb
file from Google Chrome’s official website and install it by double-clicking the file. The terminal method, however, is faster and more flexible.
Q2: Is Google Chrome safe to use on Ubuntu?
Absolutely. Google Chrome is one of the most secure and frequently updated browsers. Always install it from the official source.
Q3: How do I update Chrome manually?
You don’t need to. Chrome updates automatically when you update your system. You can also run:
sudo apt update && sudo apt upgrade
Q4: How do I uninstall Chrome from Ubuntu?
To remove Chrome from your system, run:
sudo apt remove google-chrome-stable
🏁 Final Thoughts
That’s it! You’ve successfully installed Google Chrome on Ubuntu 24.04, 22.04, or 20.04 using just a few simple terminal commands. Chrome is now ready for you to browse, install extensions, and sync your settings across devices.
For more Linux and Ubuntu tutorials, don’t forget to explore the Technoracle Blog and subscribe for future updates.