How to Install Chrome on Ubuntu

If you’re an Ubuntu user, you might notice that Google Chrome isn’t available in the default software repositories. Instead, Ubuntu ships with Mozilla Firefox as its default browser. While Firefox is a solid choice, you may prefer Google Chrome for its speed, integration with Google services, and extensive library of extensions.
Installing Chrome on Ubuntu is straightforward, but the process involves downloading the browser directly from Google’s official website and using a package manager to set it up. In this guide, I’ll walk you through the steps to install Google Chrome on Ubuntu, whether you’re a beginner or an experienced Linux user.
Why Install Google Chrome on Ubuntu?
Google Chrome offers several advantages that might make it your browser of choice:
Speed and Performance
Chrome is known for its fast browsing speeds and smooth performance, even with multiple tabs open.
Integration with Google Services
If you rely on Gmail, Google Drive, or other Google services, Chrome seamlessly integrates with your Google account.
Extensive Extensions
Chrome’s Web Store provides access to thousands of extensions to enhance your browsing experience.
Step 1: Download the Google Chrome Installer
Unlike some software, Chrome isn’t available in the Ubuntu Software Center. You’ll need to download it manually from Google’s website.
Steps:
Open Firefox or Another Browser
- Since Chrome isn’t installed yet, open Firefox or any other browser available on your system.
Visit the Official Chrome Website
Download the DEB Package
Click the Download Chrome button.
Choose the 64-bit .deb (for Debian/Ubuntu) package.
Save the file to your Downloads folder.
Step 2: Install Chrome Using the Terminal
Once the DEB package is downloaded, you’ll need to install it. Using the terminal is the easiest and fastest way.
Steps:
Open the Terminal
- Press
Ctrl + Alt + Tto open the terminal.
- Press
Navigate to the Downloads Folder
Type the following command and press Enter:
cd ~/Downloads
Install the DEB Package
Use the
dpkgcommand to install the package:sudo dpkg -i google-chrome-stable_current_amd64.debYou’ll be prompted to enter your password.
Fix Any Missing Dependencies
If you encounter errors, run this command to fix missing dependencies:
sudo apt --fix-broken install
Verify Installation
To confirm that Chrome is installed, type:
google-chrome --version
Step 3: Launch Google Chrome
After installation, you can start using Google Chrome right away.
Steps:
From the Terminal
Type the following command to launch Chrome:
google-chrome
From the Applications Menu
Click the Applications menu (grid icon on the bottom-left).
Search for “Google Chrome” and click to open it.
Set Chrome as Default (Optional)
- When Chrome opens for the first time, it may ask if you want to set it as the default browser. Choose based on your preference.
Step 4: Enable Automatic Updates
Keeping Chrome up-to-date is essential for security and performance. By default, the installer adds the Google Chrome repository to your system, enabling automatic updates.
Steps:
Check the Repository
Run the following command to verify the repository:
cat /etc/apt/sources.list.d/google-chrome.list
Update Your System
Periodically run:
sudo apt update && sudo apt upgradeThis ensures Chrome and other packages are updated.
Alternative Method: Install Chrome via GUI
If you’re not comfortable using the terminal, you can install Chrome using Ubuntu’s graphical interface.
Steps:
Locate the DEB File
- Go to your Downloads folder and find the Chrome installer.
Open with Software Installer
- Right-click on the DEB file and select Open With Software Install.
Install Chrome
- Click the Install button and enter your password when prompted.
Launch Chrome
- Once installed, search for “Google Chrome” in the Applications menu.
Benefits of Installing Chrome on Ubuntu
Cross-Platform Sync: Sign in with your Google account to sync bookmarks, passwords, and history across devices.
Web Store Access: Download productivity tools, games, and other extensions from the Chrome Web Store.
Security: Chrome is regularly updated with the latest security patches.
Troubleshooting Common Issues
Issue 1: Missing Dependencies
- Solution: Run
sudo apt --fix-broken installto resolve any dependency issues.
Issue 2: Chrome Doesn’t Launch
- Solution: Ensure that the installation completed successfully by re-running the
dpkgcommand.
Issue 3: Chrome Repository Missing
Solution: Manually add the repository using:
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
Summary
Installing Google Chrome on Ubuntu is simple and gives you access to one of the fastest and most reliable browsers available. By downloading the DEB package, installing via the terminal or GUI, and enabling automatic updates, you can enjoy Chrome’s full range of features.
Whether you’re using Chrome for work, streaming, or browsing, this guide ensures a smooth installation process. If you encounter any issues, the troubleshooting tips will help you get back on track.
FAQs
Is Chrome available in the Ubuntu Software Center?
No, Chrome isn’t available in the Software Center. You need to download it from Google’s official website.
Can I install Chrome on Ubuntu without using the terminal?
Yes, you can use the graphical installer by right-clicking the DEB file and choosing Open With Software Install.
How do I update Chrome on Ubuntu?
Chrome updates automatically if the repository is added during installation. Run sudo apt update && sudo apt upgrade to ensure all packages are up-to-date.
What’s the difference between Chrome and Chromium?
Chromium is the open-source version of Chrome. Chrome includes additional proprietary features like Flash and Google account integration.
Can I uninstall Chrome from Ubuntu?
Yes, use the following command in the terminal to uninstall Chrome:
sudo apt remove google-chrome-stable
Also read -
how to block youtube on chrome




