Sometimes users may need to install additional software, such as Google Chrome, to meet their browsing needs. Google Chrome is known for its speed, simplicity, and efficiency, which is why it’s a popular choice even for Kali Linux users. With Google Chrome installed, you can enjoy a robust browsing experience while working within Kali Linux’s powerful environment for security testing and research.
This tutorial will explore all possible steps for installing Google Chrome on Kali Linux.
- How to Install Google Chrome on Kali Linux
- How to Update Google Chrome on Kali Linux
- How to Uninstall Google Chrome on Kali Linux
- Conclusion
How to Install Google Chrome on Kali Linux
Most users utilize Kali Linux for security auditing as well as penetration testing, you can still install Google Chrome for web browsing and other general-purpose tasks.
To install Google Chrome, follow the below steps:
Step 1: Update Package Lists
For installing Google Chrome, first of all, ensure your package lists are up-to-date:
sudo apt update

Step 2: Install Dependencies
Google Chrome relies on certain libraries and tools. Install them with the below apt command:
sudo apt install wget ca-certificates curl

Step 3: Download Chrome Deb Package
For users who prefer the command line, the wget command can be used to download Google Chrome directly into the Kali Linux terminal. Alternatively, visit the Google Chrome website and download the Chrome latest package.
Let’s use wget for the latest deb package:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

Note: Replace google-chrome_current_amd64.deb with the correct filename if it has changed.
Step 4: Install the Deb Package
Use dpkg for installing the deb package. This method ensures that all required dependencies are installed along with Google Chrome:
sudo apt install ./google-chrome-stable_current_amd64.deb

Step 5: Resolve Dependencies (if necessary)
If there are any unresolved dependencies or you encounter any dependency errors, resolve them by running the below command:
sudo apt install -f
Step 6: Launch Google Chrome
Finally, launch Chrome through the application menu or by executing the below command:
google-chrome --no-sandbox

Here, Sign in and enjoy the Google Chrome features. Additionally, you can set it as default by pressing the blue button at the center of the interface:

If you prefer a method that automatically handles dependencies, you can use gdebi. For this, download the Google Chrome .deb package as mentioned above and use gdebi to install the package:
sudo gdebi google-chrome-stable_current_amd64.deb

If the user finds any error, install gdebi-core with the “sudo apt install gdebi-core” command.
To launch the Google Chrome application, use the left corner Application button and find the Google Chrome below:

That is all from the installation.
How to Update Google Chrome on Kali Linux
After installing Google Chrome, it’s important to update to the most recent version. You can update Google Chrome along with your system packages using the below command:
sudo apt install google-chrome-stable

How to Uninstall Google Chrome on Kali Linux
Google Chrome is a widely used web browser, but there may come a time when you need to uninstall it from your Kali Linux system. Whether it’s for troubleshooting, system optimization, or personal preference, removing Chrome can be done in a few simple steps:
Step 1: Identify the Installed Package
To uninstall the package, require the package name of Google Chrome:
dpkg --list | grep google

This lists all the installed packages related to Google Chrome.
Step 2: Uninstall the Package
Once you’ve identified the package name, which is typically google-chrome-stable, proceed with the uninstallation command:
sudo apt --purge remove google-chrome-stable

The –purge option removes the package along with its configuration files.
Step 3: Clean Up
To remove any unused dependencies utilize below commands:
sudo apt autoremove sudo apt autoclean

Step 4: Verify the Uninstallation
To ensure that Google Chrome has been completely removed, you can run:
dpkg --list | grep google

If no results are returned, then Chrome has been successfully uninstalled from your system.
Conclusion
Installing Google Chrome on Kali Linux involves a few steps. First, update the system packages. After that, download the .deb package of Chrome utilizing the wget command. Next, install the package using sudo apt install sudo apt install ./google-chrome-stable_current_amd64.deb. If there are missing dependencies, fix them by executing sudo apt -f install. Finally, launch Google Chrome using the command google-chrome –no-sandbox.