zoukankan      html  css  js  c++  java
  • centos7.3 chrome 安装

    /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

    安装:

    sudo yum install google-chrome-stable --nogpgcheck

    我已root进行登陆使用,发现chrome浏览器不允许使用,必须要。。。。no -sandbox 

    打开/usr/bin/google-chrome文件

    修改文件底部的内容:

    旧版本:

    复制代码
    # Make sure that the profile directory specified in the environment, if any,
    # overrides the default.
    if [[ -n "$CHROME_USER_DATA_DIR" ]]; then
      # Note: exec -a below is a bashism.
      exec -a "$0" "$HERE/chrome"  
        --user-data-dir="$CHROME_USER_DATA_DIR" "$@"
    else
      exec -a "$0" "$HERE/chrome"  "$@"  
    复制代码

    修改后:

    复制代码
    # Make sure that the profile directory specified in the environment, if any,
    # overrides the default.
    if [[ -n "$CHROME_USER_DATA_DIR" ]]; then
      # Note: exec -a below is a bashism.
      exec -a "$0" "$HERE/chrome"  
        --user-data-dir="$CHROME_USER_DATA_DIR" "$@"
    else
      exec -a "$0" "$HERE/chrome"  "$@" --no-sandbox --user-data-dir
    fi
    复制代码

    这样就可以在root时运行chrome

  • 相关阅读:
    C# learn note
    深入研究Servlet线程安全性问题
    SQL Server中的临时表和表变量
    jQuery笔记
    使用ScriptX控件进行Web打印
    asp.net MVC 设置页面否编译
    Javascript闭包【转载】
    几种开源协议
    扩展IIS7支持的文件类型(转)
    VS2012关闭烦人的文件预览选项卡
  • 原文地址:https://www.cnblogs.com/xiaojf/p/9028119.html
Copyright © 2011-2022 走看看