google安装于ubuntu14.04 64bit问题

1,下载deb安装包

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

2, 安装程序

sudo dpkg -i google-chrome-stable_current_amd64.deb

会出现如下错误:

Errors were encountered while processing:
 google-chrome-stable

3, 修复

sudo apt-get -f install

报错

执行命令/usr/bin/google-chrome时出现以下错误:
[17710:17746:1126/134345.611118:FATAL:nss_util.cc(632)] NSS_VersionCheck("3.26") failed. NSS >= 3.26 is required. Please upgrade to the latest NSS, and if you still get this error, contact your distribution maintainer.
已放弃 (核心已转储)
解决方法:

sudo apt-get install libnss3

然后执行/usr/bin/google-chrome成功

原文地址:https://www.cnblogs.com/gary-guo/p/7898889.html