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?
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?
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)
I found that it needed a new version of NSS: Chrome 62 need NSS>=3.26. So I installed libnss3.
#sudo apt-get install --reinstall libnss3
and it worked for me
– Kartik Agarwal Apr 17 '18 at 07:54