Eu instalei o Google Chrome no Debian 8 VM
com o Parallels no MacBook Pro. A instalação foi bem-sucedida e posso ver o aplicativo do Google Chrome entre os outros aplicativos. Eu acredito que isso é um problema de permissão, mas pode ser algo diferente, já que sou muito novo no Linux.
Eu baixei o arquivo google-chrome-stable_current_amd64.deb
e executei o comando para instalar,
$ sudo dpkg -i google-chrome-stable_current_amd64.deb
Eu removi o Chrome de 2 a 3 vezes com os comandos e re-instalei,
$ apt-get remove --purge google-chrome-stable
$ apt-get remove --purge google-chrome-stable
$ apt-get autoremove
$ apt-get -f install
Isso não ajuda a resolver o problema.
Quando eu corro na lista de fontes,
$ sudo cat /etc/apt/sources.list.d/google-chrome.list
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
A lista principal de fontes é
$ sudo cat /etc/apt/sources.list
# deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary #20150425-14:07]/ jessie main
# deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary #20150425-14:07]/ jessie main
deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main
deb http://ftp.us.debian.org/debian/ jessie main contrib non-free
deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free
A corrida direta do terminal produz as saídas como
$ google-chrome
[22266:22311:1230/124137.020697:FATAL:nss_util.cc(631)] 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.
Aborted
$ google-chrome-stable
[22377:22418:1230/124142.875056:FATAL:nss_util.cc(631)] 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.
Aborted
O comando locate
retorna a saída como
$ locate google-chrome-stable
/home/chaklader/Downloads/google-chrome-stable_current_amd64.deb
/usr/bin/google-chrome-stable
/usr/share/doc/google-chrome-stable
/usr/share/doc/google-chrome-stable/changelog.gz
/usr/share/man/man1/google-chrome-stable.1.gz
/var/cache/apt/archives/google-chrome-stable_63.0.3239.108-1_amd64.deb
/var/lib/dpkg/info/google-chrome-stable.list
/var/lib/dpkg/info/google-chrome-stable.md5sums
/var/lib/dpkg/info/google-chrome-stable.postinst
/var/lib/dpkg/info/google-chrome-stable.postrm
/var/lib/dpkg/info/google-chrome-stable.prerm
Como resolver o problema e lançar o Google Chrome
?