2018 kali 安装 google 浏览器

Table of Contents

一、在线下载

二、安装

三、启动


一、在线下载

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

二、安装

dpkg -i google-chrome-stable_current_amd64.deb

1.如果出现依赖问题

2018 kali 安装 google 浏览器_第1张图片

2.安装依赖

apt-get -f install

3.再次安装

dpkg -i google-chrome-stable_current_amd64.deb

三、启动

注:以下是root无法运行,google默认是普通用户运行的,我们要修该为root也可运行

 1.编辑google-chrome文件,默认位置为/opt/google/chrome下

vim /opt/google/chrome/google-chrome

2.找到 exec -a "$0" "$HERE/chrome" "$@" 并修改为以下

exec -a "$0" "$HERE/chrome" "$@" --user-data-dir --no-sandbox

3.输入 google-chrome 即可启动浏览器了

google-chrome

 

你可能感兴趣的:(2018 kali 安装 google 浏览器)