So You Just Got Kali… and Chrome Won’t Install. Sound Familiar?
I remember my first day with Kali. Terminal open, hoodie on, ready to hack the planet. And then… I spent three hours trying to install a browser. Three. Hours.
Turns out, Chrome doesn’t live in Kali’s default repos. You can’t just apt install chrome and call it a day. Instead, you get cryptic dependency errors that make you question your life choices.
Here’s the fix I wish I had on day one. Total time: about five minutes.
Why This Matters More Than You Think
Without Chrome you miss:
- All your favorite OSINT extensions (I’m looking at you, Shodan and Hunter)
- Syncing bookmarks across your red-team laptop and daily driver
- That warm fuzzy feeling when a site finally loads without screaming about “unsupported browser”
Skip this step and you’ll keep copy-pasting URLs into another machine like it’s 1998.
Step-by-Step: Install Chrome on Kali in 2025
1. Update first (always)
sudo apt update && sudo apt upgrade -y
Do it. Dependencies hate surprises.
2. Grab the official .deb
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Direct from Google. No shady mirrors.
3. Install it
sudo dpkg -i google-chrome-stable_current_amd64.deb
You’ll probably see red text. That’s normal. Keep going.
4. Fix the red text
sudo apt --fix-broken install -y
One command pulls in every missing library. Hit enter, grab coffee, done.
5. Launch it (but not as root)
google-chrome
If you’re logged in as root, create a normal user first. Chrome’s sandbox throws a tantrum otherwise.
Keep It Updated Forever
The installer drops Google’s repo into /etc/apt/sources.list.d/. From now on:
sudo apt update && sudo apt upgrade -y
…also updates Chrome. Zero extra work.
Quick FAQ
Is Chrome safe on Kali?
Yes, if you run it as a regular user and keep it patched.
Can I use Firefox instead?
Sure. Firefox-ESR is already there. But if you need Chrome-only extensions, you’re back here anyway.
Chrome won’t start—now what?
99% of the time you skipped –fix-broken install. Run it.
That’s it. You’re now five minutes closer to actually using Kali instead of wrestling it. Happy hunting.