Linux Mint users can add Chrome through the official repository method, avoiding compatibility issues with the system’s package manager. This guide covers exactly how to install chrome on linux mint using the most reliable method available. You will get step-by-step instructions, troubleshooting tips, and answers to common questions.
Chrome is not included in Linux Mint’s default repositories because it is proprietary software. However, Google provides a dedicated repository that works seamlessly with Mint’s APT system. This ensures you receive automatic updates just like any other system package.
Why Install Chrome On Linux Mint
Many users prefer Chrome for its speed, sync capabilities, and extensive extension library. It integrates well with Google services and offers robust security features. Linux Mint users often switch to Chrome for better Netflix playback or web app support.
Firefox comes pre-installed on Linux Mint, but Chrome offers a different experience. If you need Chrome for work or personal use, the installation process is straightforward. The method described here works for all editions of Linux Mint, including Cinnamon, MATE, and Xfce.
Prerequisites For Installation
Before you begin, ensure your system is up to date. Open a terminal and run:
sudo apt update && sudo apt upgrade -y
You need an active internet connection and sudo privileges. The installation uses the terminal, but it is simple to follow. No advanced Linux knowledge is required.
Check Your System Architecture
Most modern systems use 64-bit architecture. Verify with:
uname -m
If the output shows “x86_64,” you are on a 64-bit system. Chrome only supports 64-bit Linux distributions as of 2024. If you have a 32-bit system, consider using Chromium instead.
How To Install Chrome On Linux Mint
This section provides the complete method. Follow each step carefully to avoid errors.
Step 1: Download The Google Chrome .Deb Package
Open your web browser and go to the official Google Chrome download page. You can use Firefox or any existing browser for this step.
- Visit https://www.google.com/chrome/
- Click “Download Chrome”
- Select the “64-bit .deb (For Debian/Ubuntu)” option
- Click “Accept and Install”
The download starts automatically. The file is named something like google-chrome-stable_current_amd64.deb. Save it to your Downloads folder.
Step 2: Install The Downloaded Package
Open a terminal and navigate to your Downloads directory:
cd ~/Downloads
Now install the package using dpkg:
sudo dpkg -i google-chrome-stable_current_amd64.deb
You may see dependency errors. This is normal. Fix them with:
sudo apt install -f
This command installs any missing dependencies and completes the Chrome installation. Once finished, Chrome is ready to use.
Step 3: Launch Google Chrome
You can launch Chrome from the application menu. Search for “Google Chrome” in the menu and click the icon. Alternatively, run from the terminal:
google-chrome-stable
On first launch, Chrome asks if you want to set it as your default browser and whether to send usage statistics. Choose your preferences and sign in with your Google account if desired.
Alternative Method: Using Google’s Repository
This method adds Google’s official repository to your system. It ensures automatic updates through the package manager. Some users prefer this for better integration.
Add The Google Repository
First, download and install the Google signing key:
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Then add the repository:
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
Install Chrome From The Repository
Update your package list:
sudo apt update
Now install Chrome:
sudo apt install google-chrome-stable
This method installs the same Chrome version as the .deb package. The advantage is that future updates happen automatically when you run sudo apt update && sudo apt upgrade.
Post-Installation Configuration
After installation, you may want to customize Chrome for Linux Mint. Here are some useful settings.
Set Chrome As Default Browser
Open Chrome and go to Settings. Under “Default browser,” click “Make default.” Alternatively, you can set it system-wide in Linux Mint’s settings under “Preferred Applications.”
Enable Hardware Acceleration
Chrome uses hardware acceleration by default on Linux Mint. If you experience video playback issues, check in chrome://settings/system that “Use hardware acceleration when available” is enabled.
Install Chrome Extensions
Extensions work the same as on other operating systems. Visit the Chrome Web Store and install your favorites. Ad blockers, password managers, and productivity tools are popular choices.
Troubleshooting Common Issues
Even with a straightforward installation, you might encounter problems. Here are solutions for common issues.
Dependency Errors During Installation
If you see messages about missing packages, run:
sudo apt --fix-broken install
This resolves most dependency issues. If problems persist, ensure your system is fully updated first.
Chrome Won’t Launch
Try launching from the terminal to see error messages:
google-chrome-stable
Common errors include missing libraries or sandbox issues. Install missing libraries with:
sudo apt install libxss1 libappindicator1 libindicator7
If you see a sandbox error, disable it temporarily (not recommended for security):
google-chrome-stable --no-sandbox
Chrome Crashes Frequently
This may be due to conflicting extensions or corrupted profile. Create a new profile by renaming the config folder:
mv ~/.config/google-chrome ~/.config/google-chrome-backup
Then restart Chrome. If it works, the issue was with your old profile.
Uninstalling Google Chrome
If you need to remove Chrome, use the package manager. For the .deb installation:
sudo apt remove google-chrome-stable
To remove the repository version, also remove the repository file:
sudo rm /etc/apt/sources.list.d/google-chrome.list
You can also remove the signing key if desired:
sudo apt-key del "Google Inc."
Frequently Asked Questions
Can I Install Chrome On Linux Mint Without Terminal?
Yes, you can download the .deb file using a browser and double-click it to install via the graphical package manager. However, the terminal method is more reliable for fixing dependencies.
Is Chrome Safe To Use On Linux Mint?
Yes, Chrome is safe when downloaded from the official Google website. It receives regular security updates through the repository method. Avoid downloading Chrome from third-party sources.
Does Chrome Work With Linux Mint 21 Or 22?
Yes, Chrome is fully compatible with Linux Mint 21 (Vanessa) and 22 (Wilma). The installation method is the same for both versions. Always use the 64-bit .deb package.
What Is The Difference Between Chrome And Chromium On Linux Mint?
Chromium is the open-source base of Chrome, available in Mint’s repositories. Chrome includes proprietary components like Widevine DRM for Netflix, automatic updates, and Google integration. Chromium lacks these features.
How Do I Update Chrome On Linux Mint?
If you used the repository method, updates happen automatically with system updates. For the .deb method, you need to download and install the new version manually. The repository method is recommended for automatic updates.
Performance Tips For Chrome On Linux Mint
Chrome can be resource-intensive. Optimize it for better performance on Linux Mint.
Reduce Memory Usage
Open Chrome’s task manager with Shift+Esc. Close tabs or extensions that use excessive memory. Consider using the “Memory Saver” feature in Chrome settings.
Disable Unnecessary Extensions
Extensions consume resources. Keep only essential ones. Review your extensions in chrome://extensions and remove what you don’t need.
Use Flags For Better Performance
Chrome flags offer experimental features. Type chrome://flags in the address bar. Enable “Override software rendering list” for better GPU usage. Be cautious with flags as they can cause instability.
Conclusion
Installing Chrome on Linux Mint is a simple process that takes just a few minutes. Whether you choose the .deb package or the repository method, you get a fully functional browser with automatic updates. The key is to follow the steps carefully and resolve any dependency issues with the apt install -f command.
Linux Mint users can enjoy Chrome’s full feature set, including sync across devices, extensive extensions, and smooth video playback. The system integration works well, and Chrome runs stably on Mint’s solid base. If you encounter any issues, the troubleshooting section above covers the most common problems.
Remember to keep your system updated regularly. This ensures Chrome receives security patches and new features. With Chrome installed, you have a powerful tool for browsing, working, and entertainment on Linux Mint.