zoukankan      html  css  js  c++  java
  • Ubuntu14.04安装配置Chrome浏览器

    1.获取软件
    32位版本:

               wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb

    64位版本:

               wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

    2.安装软件
    进入下载后的页面,输入
         sudo dpkg -i google-chrome-stable_current_amd64.deb
    安装过程中会出现依赖问题的提示.
         输入sudo apt-get install -f
    等待安装完成后就可正常启动
    3.root用户打开浏览器会出现提示--user-data-dir
         使用find命令查找chrome的安装位置
    $find ~ -name "*.txt" -print    #在$HOME中查.txt文件并显示
    输入命令
         google-chrome –user-data-dir=”/home/google-chrome”
    就可启动(每次启动均需如此设置)


    编辑/usr/share/applications/google-chrome.desktop,
    将其中的Exec行全部修改为Exec=/opt/google/chrome/google-chrome --user-data-dir="/home/google-chrome"
  • 相关阅读:
    实参和形参
    location对象
    区别 apply,call
    窗体之间的交互(window.opener)
    我的升级脚本总结
    Create elements
    history 对象
    函数参数的属性:callee
    发布app store流程
    【转】如何生成静态页面的五种方案
  • 原文地址:https://www.cnblogs.com/wuyida/p/6300261.html
Copyright © 2011-2022 走看看