Today, I installed SecureCRT Version "8.3.3 (build 1646) - Official Release - May 3, 2018" on Ubuntu 16.04.4 LTS machine. After installation, SecureCRT won't launch and gave the following error in terminal.
Firstly, install required PNG Library "libpng16-16" package with the following command:
HTH,
Rana Tauqeer.
$ SecureCRTTried various tweaks, and the following did the job.
SecureCRT: error while loading shared libraries: libpng16.so.16: cannot open shared object file: No such file or directory
Firstly, install required PNG Library "libpng16-16" package with the following command:
$ sudo apt install libpng16-16Run the program, and if you come across `GLIBCXX_3.4.22' not found error than go further below to next step:
$ SecureCRTNow, Update GLIBCXX_3.4.22 library packages from this untrusted PPA by adding ppa:ubuntu-toolchain-r/test to your system's Software Sources.
SecureCRT: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found (required by SecureCRT)
$ sudo add-apt-repository ppa:ubuntu-toolchain-r/testYou can check if you have GLIBCXX_3.4.22 like this:
$ sudo apt update
$ sudo apt dist-upgrade -y
$ strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCXX_3.4.22
GLIBCXX_3.4.22Now, run SecureCRT and enjoy!
HTH,
Rana Tauqeer.
That fixed my problem. Thank you.
ReplyDelete