Install Chrome for Linux
Vivek Yadav
Full Stack Developer | JavaScript & Python | Passionate about Web Development
Google Chrome is one of the most popular web browsers globally, known for its speed, security, and extensive extension support. While Linux users often rely on Firefox, many prefer Chrome for its seamless integration with Google services and cross-platform syncing. In this guide, we will walk you through the steps to install Chrome for Linux easily, covering different distributions and troubleshooting tips.
System Requirements for Installing Chrome on Linux
Before proceeding, ensure your system meets the following requirements:
Google Chrome officially supports:
Also Read:- how to install splunk on linux
How to Download Chrome for Linux
To begin, you need to download Chrome for Linux from Google’s official website:
Installation Steps for Ubuntu/Debian-Based Distros
If you are using Ubuntu, Debian, or any Debian-based Linux distribution, follow these steps:
Using GUI (Graphical User Interface)
Using Terminal (Command Line)
For those who prefer the command line:
cd ~/Downloads
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get install -f # Fix dependencies if needed
To confirm installation, type:
google-chrome --version
Also Read:- how to turn on linux on chromebook
Installation Steps for Fedora/RHEL-Based Distros
For Fedora, RHEL, and CentOS users, follow these steps:
Using GUI
Using Terminal
For a more efficient method, use the terminal:
cd ~/Downloads
sudo dnf install google-chrome-stable_current_x86_64.rpm
For RHEL users, use:
sudo yum install google-chrome-stable_current_x86_64.rpm
To verify installation:
google-chrome --version
Verifying Installation and Launching Chrome
After installation, launch Google Chrome using:
Also Read:- unable to locate package ubuntu
Setting Chrome as the Default Browser
To set Google Chrome as your default browser:
Alternatively, in the terminal, run:
xdg-settings set default-web-browser google-chrome.desktop
Troubleshooting Common Installation Issues
Dependency Issues (Ubuntu/Debian)
Run:
sudo apt-get install -f
Keyring Issues (Fedora/RHEL)
If you get a GPG key error, import Google’s key manually:
sudo rpm --import https://dl.google.com/linux/linux_signing_key.pub
Chrome Not Launching
Try running:
google-chrome --no-sandbox
If that works, check permissions:
sudo chown -R $USER:$USER ~/.config/google-chrome
Frequently Asked Questions (FAQs)
Can I install Google Chrome on Linux 32-bit?
No, Google has discontinued 32-bit support for Chrome on Linux. Consider using Chromium instead.
Is Google Chrome better than Firefox on Linux?
Both browsers have their strengths. Chrome offers better Google service integration and extension support, while Firefox is more privacy-focused.
How do I update Google Chrome on Linux?
Can I install Chrome on Arch Linux?
Chrome is not officially available for Arch Linux, but you can install it using AUR:
yay -S google-chrome
How do I uninstall Google Chrome from Linux?
Conclusion
Installing Google Chrome on Linux is a straightforward process, whether using a graphical interface or the terminal. Now that you have successfully installed Chrome, you can enjoy fast browsing, extensions, and Google services on your Linux system.