zoukankan      html  css  js  c++  java
  • 解决Ubuntu19.04无法安装SecureCRT

    推荐下载SecureCRT的tar包

    在ubuntu19.04上安装SecureCRT的时候,报错libssl1.0.0-xxx没有安装

    解决办法:下载并安装libssl1.0.0_1.0.1t-1+deb8u11_amd64.deb
    下载地址:http://security-cdn.debian.org/debian-security/pool/updates/main/o/openssl/

    执行启动脚本
    liangjiongyao@liangjiongyao-desktop:~/Downloads/scrt-8.5.3$ ./SecureCRT
    ./SecureCRT: error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory

    解决办法:
    liangjiongyao@liangjiongyao-desktop:~/Downloads/scrt-8.5.3$ sudo find / -name libpython2.7.so.1.0
    find: ‘/proc/7104/task/7104/net’: Invalid argument
    find: ‘/proc/7104/net’: Invalid argument
    find: ‘/proc/8404’: No such file or directory
    /snap/wine-platform/128/usr/lib/i386-linux-gnu/libpython2.7.so.1.0
    /snap/wine-platform/128/usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0
    find: ‘/run/user/1000/gvfs’: Permission denied

    liangjiongyao@liangjiongyao-desktop:~/Downloads/scrt-8.5.3$ sudo vim /etc/ld.so.conf
    /snap/wine-platform/128/usr/lib/x86_64-linux-gnu/ //将该路径加入

    liangjiongyao@liangjiongyao-desktop:~/Downloads/scrt-8.5.3$ sudo ln -s /snap/wine-platform/128/usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0 /usr/local/lib/
    liangjiongyao@liangjiongyao-desktop:~/Downloads/scrt-8.5.3$ ll /usr/local/lib/libpython2.7.so.1.0
    lrwxrwxrwx 1 root root 68 5月 26 20:12 /usr/local/lib/libpython2.7.so.1.0 -> /snap/wine-platform/128/usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0

    liangjiongyao@liangjiongyao-desktop:~/Downloads/scrt-8.5.3$ sudo /sbin/ldconfig -v //刷新

  • 相关阅读:
    jQuary学习の三の效果展示
    jQuary学习の二の语法
    jQuary学习の一の初期准备
    js备战春招の四のjs函数
    javascript JSON
    js备战春招の四の表单
    js备战春招の四の严格模式
    290. Word Pattern--Easy
    546. Remove Boxes--Hard
    牛客网-华为-2020届校园招聘上机考试-3
  • 原文地址:https://www.cnblogs.com/liangjiongyao/p/10927250.html
Copyright © 2011-2022 走看看