# 加源
sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/
#加公钥
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
# 更新源
sudo apt-get update
#安装
sudo apt-get install google-chrome-stable
# 启动
/usr/bin/google-chrome
如果出现错误
[6775:6811:1009/211227.962723: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.
升级nss就可以
sudo apt install --reinstall libnss3
网友评论