linux 安装谷歌浏览器

参考
https://blog.csdn.net/LuyaoYing001/article/details/83416542

安装最新版本google-chrome

yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
1
测试安装
google-chrome-stable --headless --disable-gpu --screenshot http://www.baidu.com/1
报错:
[1026/154358.043744:ERROR:zygote_host_impl_linux.cc(89)] Running as
root without --no-sandbox is not supported. See
https://crbug.com/638180.

需要指定以no-sandbox方式运行。

google-chrome-stable --no-sandbox --headless --disable-gpu --screenshot http://www.baidu.com/1

显示这个表示成功 Fontconfig warning: “/etc/fonts/fonts.conf”, line 86: unknown element “blank” [1026/154710.301159:ERROR:gpu_process_transport_factory.cc(980)] Lost UI shared context. [1026/154711.126035:INFO:headless_shell.cc(538)] Written to file screenshot.png. 安装chrome-driver(提供给java或者Python运行) wget http://npm.taobao.org/mirrors/chromedriver/70.0.3538.67/chromedriver_linux64.zip 这个是解压zip 到指定文件夹 tar -zcvf chromedriver_linux64.zip /usr/local/bin/ 或 (二选一) unzip -d /usr/local/bin chromedriver_linux64.zip
原文地址:https://www.cnblogs.com/procedureMonkey/p/9896335.html