参考:https://blog.csdn.net/sirobot/article/details/107016135
https://blog.csdn.net/qq_41042710/article/details/108748561
1、执行以下命令安装chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome*
sudo apt-get install -f
2、解决root用户无法启动chrome问题
用记事本打开google-chrome文件,目录:/usr/bin/google-chrome
找到:
exec -a "$0" "$HERE/chrome" "$@"
修改为:
exec -a "$0" "$HERE/chrome" "$@" --no-sandbox
重新启动游览器