
- by x32x01 ||
Google Chrome is the world’s most popular web browser - known for its speed, security, and simplicity. Whether you’re browsing, syncing your bookmarks, or managing extensions, Chrome delivers a modern and seamless web experience across all your devices.
In this guide, we’ll show you how to install Google Chrome on Ubuntu 20.04 step by step using simple terminal commands. Let’s dive in!
Why Use Google Chrome on Ubuntu?
Before jumping to installation, here’s why Chrome is a great choice for Ubuntu users:
Installing Google Chrome on Ubuntu 20.04
Since Chrome is not open-source, it doesn’t come with Ubuntu by default. But don’t worry - installing it is quick and easy using just two commands.
Step 1: Download Google Chrome
Open your terminal using the shortcut
Then, use the wget command to download the latest stable version of Google Chrome directly from Google’s servers:
This will download the .deb installer file to your current directory.
Step 2: Install Google Chrome
Now, use the apt command to install Chrome. You’ll need sudo privileges for this step:
Enter your user password when prompted, and Ubuntu will handle the rest - installing Chrome and setting up all dependencies automatically.
Once the installation finishes, you can find Google Chrome in your app list or launch it by typing google-chrome in the terminal.
Launching Google Chrome
To start using Chrome, simply run:
Or go to your Applications Menu → Internet → Google Chrome.
From here, you can sign in with your Google account to sync all your bookmarks, extensions, and saved passwords across your devices.
Keeping Chrome Updated
After installation, Chrome automatically adds its repository to your system, ensuring it updates with your regular Ubuntu updates. You can check for updates anytime with:
That’s it - you now have the latest version of Google Chrome running smoothly on Ubuntu 20.04.
Final Thoughts
Installing Google Chrome on Ubuntu 20.04 is simple, fast, and secure. With just two commands, you can enjoy the world’s most powerful web browser on Linux.
So go ahead - browse faster, safer, and smarter!
In this guide, we’ll show you how to install Google Chrome on Ubuntu 20.04 step by step using simple terminal commands. Let’s dive in!

Why Use Google Chrome on Ubuntu?
Before jumping to installation, here’s why Chrome is a great choice for Ubuntu users:Fast performance - optimized for the modern web.
Strong security - automatic updates and sandboxing.
Sync across devices - bookmarks, history, and passwords stay connected.
Thousands of extensions - customize your browsing experience easily.
Installing Google Chrome on Ubuntu 20.04
Since Chrome is not open-source, it doesn’t come with Ubuntu by default. But don’t worry - installing it is quick and easy using just two commands.Step 1: Download Google Chrome
Open your terminal using the shortcut Ctrl + Alt + T
or by selecting the Terminal app.Then, use the wget command to download the latest stable version of Google Chrome directly from Google’s servers:
Code:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Step 2: Install Google Chrome
Now, use the apt command to install Chrome. You’ll need sudo privileges for this step: Code:
sudo apt install ./google-chrome-stable_current_amd64.deb
Once the installation finishes, you can find Google Chrome in your app list or launch it by typing google-chrome in the terminal.

Launching Google Chrome
To start using Chrome, simply run: Code:
google-chrome
Or go to your Applications Menu → Internet → Google Chrome.
From here, you can sign in with your Google account to sync all your bookmarks, extensions, and saved passwords across your devices.
Keeping Chrome Updated
After installation, Chrome automatically adds its repository to your system, ensuring it updates with your regular Ubuntu updates. You can check for updates anytime with: Code:
sudo apt update && sudo apt upgrade
That’s it - you now have the latest version of Google Chrome running smoothly on Ubuntu 20.04.

Final Thoughts
Installing Google Chrome on Ubuntu 20.04 is simple, fast, and secure. With just two commands, you can enjoy the world’s most powerful web browser on Linux.So go ahead - browse faster, safer, and smarter!

Last edited: