【kali】安装谷歌游览器
程序员文章站
2024-02-14 16:32:04
...
目的
我们的目标是在 Kali Linux 上安装Google Chrome Web 浏览器
安装步骤
1、下载 Google Chrome
使用 wget 命令来下载最新版本的 Google Chrome 的 debian 安装包。
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
2、安装 Google Chrome
在 Kali Linux 安装 Google Chrome 最容易的方法就是使用 gdebi ,它会自动帮你下载所有的依赖包
安装gdebi
apt install gdebi-core
安装谷歌游览器
gdebi google-chrome-stable_current_amd64.deb
启动 Google Chrome
开启一个终端,执行 google-chrome
命令来启动 Google Chrome 浏览器
启动时候报错解决方法
报错信息:[3853:3853:0520/115723.747971:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
从安全角度考虑,Chrome不应在root环境下运行,如果某些原因必须以root身份运行Chrome,可以运行下面的命令
google-chrome --no-sandbox --user-data-dir &
就可以开心的使用谷歌游览器了
重启系统,设置快捷方式
vim /usr/bin/google-chrome
修改配置文件
将 exec -a "$0" "$HERE/chrome" "[email protected]" 改为
exec -a "$0" "$HERE/chrome" "[email protected]" --user-data-dir --no-sandbox
以后只要 #google-chrome 就可以打开Chrome了
虽然也会弹出一堆错误,但是终于成功打开了!!
上一篇: iOS中打包上传常见的错误与解决办法
下一篇: iOS字体抖动动画的实现代码