chorme - zollak/pentest-notes GitHub Wiki

Install Google Chrome

Install Google Chrome web browser on Kali Linux.

  1. Required packages:
root@alive # libappindicator1 libdbusmenu-glib4 libdbusmenu-gtk4 libindicator7
  1. Download Google Chrome
root@alive # cd ~/Downloads
root@alive # wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  1. Install Google Chrome
root@alive # dpkg -i /root/Downloads/google-chrome-stable_current_amd64.deb
root@alive # mkdir /opt/google/chrome/log
root@alive # cat <<EOF > /opt/scripts/chrome.sh
#!/bin/bash
xhost +; su -c '/usr/bin/google-chrome --proxy-server="http://localhost:8080"' zollak 2&> /opt/google/chrome/log/chrome.log
EOF

root@alive # chmod a+x /opt/scripts/chrome.sh

Note: the script file located here.

  1. Run
root@alive # chrome.sh &

Alternative install Google Chrome with gdebi

gdebi will automatically download all depended packages. First, install gdebi itself:

# apt install gdebi-core

Once ready, install the actual google chrome package:

# gdebi google-chrome-stable_current_amd64.deb

Start Google Chrome in this way:

# google-chrome --no-sandbox

Note: Running as root without --no-sandbox is not supported.

⚠️ **GitHub.com Fallback** ⚠️