kali 安装 Google Chrome

1.  wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
2. gdebi google-chrome-stable_current_amd64.deb
2。 开启一个终端,执行 google-chrome 命令来启动 Google Chrome 浏览器。
出现:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
修改 vim  /usr/bin/google-chrome
到达最后一行,将原来的“exec -a "$0" "$HERE/chrome" "@"”修改为:
exec -a "$0" " $here/chrome"
"$PROFILE_DIRECTORY_FLAG" "$@ --user-data-dir" --no-sandbox

 
 
原文地址:https://www.cnblogs.com/awakenedy/p/15496800.html