0

When I try to open Google Chrome, I get this:

[2922:2958:0913/051621.681319:FATAL:nss_util.cc(632)] 
NSS_versionCheck("3.26") failed. NSS >= 3.26 is required.
Please upgrade to the latest NSS
Aborted (core dumped)

What should I do?

1 Answers1

0

Try adding these to the top of your /etc/ld.so.conf: (using e.g. nano)

/lib

/usr/lib

then

run ldconfig (or reboot) and try it again.

You should see /opt/google/chrome/chrome linked to the libraries in /usr/lib if you check it with ldd.

OR

1) build and install the mozilla-nss package. I used the one found in the Slackware 14.1 source, which is 3.15.2.

2) as above - add these lines to the top of /etc/ld.so.conf: /lib /usr/lib

3) Run ldconfig (or reboot)

source: https://www.linuxquestions.org/questions/slackware-14/google-chrome-30-error-nss-4-13-5-upgrade-4175482053/

chazecka
  • 378