zoukankan      html  css  js  c++  java
  • Ubuntu 部署 Chrome

    1 Install Chrome
    
    基于 Google Chrome 79.0.3945.88 版本
    
    $ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    $ sudo dpkg -i google-chrome-stable_current_amd64.deb
    
    2 Run Chrome when system startup
    
    Go to the "Dash", and open "Startup Application Preferences".
    Press the "Add" button.
    Open "Startup and custom command", enter: google-chrome --kiosk --noerrdialogs --app=http://www.baidu.com
    
    
    3 解决 Ubuntu 下打开 Chrome 出现“输入密码以解锁您的登录密钥环”的问题
    
    删除现在密钥环:在终端输入 seahorse 打开管理密钥环的软件,视图 -> 根据密码环,在密码区会有一个“登录”为名字的密钥环,右击将其删除。
    添加新的密钥环:在终端输入 seahorse 打开管理密钥环的软件,文件 -> 新建 -> 密码和密钥 -> 输入名字(这里是以“chrome”为例),密码设置为空,重启后问题得以解决。
    开机直接点击继续。
    
    4 Enable auto save password
    Go to Settings Search
    for 'password' in the search box Uncheck 'Offer to save your web password' this option to never save passwords Click 'Manage passwords' button to delete existing saved passwords

    5 System Program Problem detected
    网上很多教程不加任何解释,就是关闭这个report功能。作为强迫症的我,是不愿意不明不白的这样做的。看过上述的解释,有两种解决办法:

      5.1删除crash文件

      crash报告存储在/var/crash路径下,执行以下命令即可:

      sudo rm /var/crash/*

      5.2关闭pop up功能

    sudo gedit /etc/default/apport 将其中的enable=1改为enable=0即可

  • 相关阅读:
    Chevy equinox
    回家线路
    salesforce account hierarchy
    IOS8 对flex兼容性问题
    Chrome FeHelper 插件下载地址
    vue 项目抛出警告
    vue 干货
    Error in mounted hook: "TypeError: handlers[i].call is not a function" 原因
    vue 路由知识点(一级路由与二级路由嵌套)
    (转)ORA-01940: cannot drop a user that is currently connected 问题解析
  • 原文地址:https://www.cnblogs.com/liuwei0824/p/14395127.html
Copyright © 2011-2022 走看看