Uncategorized
Uncategorized

Google Chrome in Kali or Debian


You can run this line below to automatically install Google Chrome and add a shortcut on your desktop.

wget -O - http://yayprogramming.com/files/chrome-install.sh | bash

Once the script is completed running, you should have Google Chrome completely installed on your Kali OS. If you want to do these steps without using the automatic installer, follow the steps below.

Download the ‘deb’ package for Google Chrome.

wget -O ~/Downloads/google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

Use dpkg to install this package

dpkg -i ~/Downloads/google-chrome-stable_current_amd64.deb

If any errors happen, run:

apt-get install -f

Create a Google Chrome desktop shortcut

nano ~/Desktop/chrome.desktop

Paste the contents below into this shortcut.

[Desktop Entry]
Encoding=UTF-8
Version=1.0
Name=Google Chrome
GenericName=Google Chrome
Exec=/usr/bin/google-chrome-stable --no-sandbox --user-data-dir
Terminal=false                                  
Icon=google-chrome
Type=Application
TargetEnvironment=Unity

View Comments
There are currently no comments.