参考文档
problems
Question:
root@lubuntu:~# SecureCRT
SecureCRT: error while loading shared libraries: libpng12.so.0: cannot open shared object file: No such file or directory
Answer:
This is a missing dependency issue, and solution to this is very simple and quick. Just follow: Add repository for libpng12-0 in sources.list via terminal
sudo vim /etc/apt/sources.list
at the bottom of the file add
## Manually Added sources
## source for libpng12-0 package
deb http://mirrors.kernel.org/ubuntu/ xenial main
now to update the package list
sudo apt update
sudo apt install libpng12-0