Networking Basics for Ethical Hackers (Beginner to Pro Guide)
LearnSkillsHub is a technology learning blog focused on providing simple and practical tutorials for beginners. This blog covers ethical hacking, Kali Linux guidance, cyber security basics, networking concepts, and modern technology tutorials. Our goal is to make complex technical topics easy to understand through clear, step-by-step explanations and ethical learning practices. OFFICIAL YOUTUBE :-https://youtube.com/@learnskills-rk7rv?si=zeXay9-j6APMVbAp
Google Chrome is one of the most popular web browsers, but it does not come pre-installed in Kali Linux because Kali focuses on open-source tools.
Still, you can install Chrome easily using the terminal.
In this tutorial, you’ll learn how to download and install Google Chrome in Kali Linux using only terminal commands.
Google Chrome is not open-source, so it is not available in Kali’s default repositories.
We will download it directly from Google and install it safely.
Kali Linux (Any version)
Internet connection
Terminal access
Root or sudo privileges
Always update your system before installing new software.
sudo apt update && sudo apt upgrade -y
๐ Why?
This prevents dependency issues and ensures smooth installation.
Google Chrome for Linux comes as a .deb package.
Run the following command:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
๐ This command:
Downloads the official Google Chrome Stable version
Saves it in your current directory
To confirm download:
ls
You should see:
google-chrome-stable_current_amd64.deb
aptNow install the downloaded package:
sudo apt install ./google-chrome-stable_current_amd64.deb
๐ Why apt instead of dpkg?
apt automatically installs missing dependencies
Prevents broken installations
If you face any error, run:
sudo apt --fix-broken install -y
Then retry the installation command.
Check if Chrome is installed correctly:
google-chrome --version
Example output:
Google Chrome 120.0.6099.109
✅ Chrome is installed successfully!
Run:
google-chrome
Or in background mode:
google-chrome &
You can also open Chrome from Kali menu:
Applications → Internet → Google Chrome
Run:
xdg-settings set default-web-browser google-chrome.desktop
Chrome automatically adds Google’s repository during installation.
To verify:
cat /etc/apt/sources.list.d/google-chrome.list
This ensures Chrome updates with system updates.
After installation, clean up:
rm google-chrome-stable_current_amd64.deb
sudo apt remove google-chrome-stable -y
sudo apt purge google-chrome-stable -y
Command 'wget' not foundFix:
sudo apt install wget -y
Architecture not supportedChrome works only on 64-bit systems.
Check architecture:
uname -m
Output should be:
x86_64
Installing Google Chrome in Kali Linux using terminal is simple and safe if done correctly.
✔ Official Google package
✔ No third-party sources
✔ Automatic updates
✔ Dependency-safe installation
Comments
Post a Comment