参考博客:https://blog.csdn.net/hackdevil/article/details/9190233
安装完后google自动安装在~/opt/google/chrome下

google在linux中安装稍微麻烦一点
步骤一:下载deb包,以67版本为例

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

64位:https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
下载64位,点击上面第二个链接后复制网址

sudo wget + 网址

下载在Downloads文件夹中
步骤二:安装

sudo dpkg -i google-chrome-unstable_current_i386.deb

上面安装会报错,此时进入步骤三

步骤三,解决依赖关系

sudo apt-get -f install

安装完后google-chrome自动安装在~/opt/google/chrome下,此时可以设置环境变量
参考:https://blog.csdn.net/Mr_Cat123/article/details/80862856