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即可

原文地址:https://www.cnblogs.com/liuwei0824/p/14395127.html