chrome的更新与启动
centos7 更新Chrome
1.配置yum下载源:
在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo, 并且在该文件中添加如下内容:
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
2>sudo yum -y install google-chrome-stable --nogpg
Centos7应用程序下的互联网中的google-chrome图标打不开程序
[root@localhost bin]# /usr/bin/google-chrome
[8239:8239:1230/172329.621009:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
解决方法:(以下方法任选其一即可)
1. [root@wilber ~]#/usr/bin/google-chrome --no-sandbox //添加--no-sandbox后即可启动浏览器 (但是图标无法打开,只能命令打开)
2. 桌面图标右击-->属性-->启动命令(打开/usr/share/applications/目录下的googlechrome,右键,属性)后添加“--no-sandbox”
即:/usr/bin/google-chrome-stable %U --no-sandbox
3. [root@wilber ~]# vim /usr/share/applications/google-chrome.desktop
修改:Exec=/usr/bin/google-chrome-stable %U
为:Exec=/usr/bin/google-chrome-stable %U --no-sandbox
4. 启动文件位置:/opt/google/chrome/google-chrome
[root@wilber ~]# vim /opt/google/chrome/google-chrome
翻到最后,修改如下:
#exec -a "$0" "$HERE/chrome" "$@"
exec -a "$0" "$HERE/chrome" "$@" --no-sandbox $HOME
这样就能远程调用chrome的执行机了