zoukankan      html  css  js  c++  java
  • CentOS 7.9 install EDA tools

    CentOS 7.9 install EDA tools

    base software package

    sudo yum install ksh tcsh csh -y
    sudo yum install tcl tk tcl-devel tk-devel -y
    

    libmng.so.1

    • if centos 7
      error while loading shared libraries: libmng.so.1: cannot open shared object file: No such file or directory
    such yum install libmng -y
    
    • if centos 8
    cd /lib64
    ll libmng.so.*
    
    sudo ln -s libmng.so.2 libmng.so.1
    

    libXss.so.1

    error while loading shared libraries: libXss.so.1: cannot open shared object file: No such file or directory

    sudo yum install libXScrnSaver -y
    

    libtiff.so.3

    error while loading shared libraries: libtiff.so.3: cannot open shared object file: No such file or directory

    cd /lib64
    ll libtiff.so.*
    
    sudo ln -s libtiff.so.5 libtiff.so.3
    

    libncurses5

    sudo yum -y install libncurses*

    ld-linux.so.2

    /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory

    sudo yum install glibc.i686 -y
    

    libXp.so.6

    error while loading shared libraries: libXp.so.6: cannot open shared object file: No such file or directory

    sudo yum install libXp -y
    

    libGLU.so.1

    error while loading shared libraries: libGLU.so.1: cannot open shared object file: No such file or directory

    sudo yum install mesa-libGLU
    

    lsb_release

    ERROR: Unable to find 'lsb_release'

    sudo yum install redhat-lsb -y
    

    libX11.so.6 no such file or directory

    libX11.so.6: cannot open shared object file: No such file or directory

    sudo yum -y install libX11.i686 libX11-devel.i686
    sudo yum -y install libX11.x86_64 libX11-devel.x86_64
    

    libXext.so.6 no such file or directory

    error while loading shared libraries: libXext.so.6: cannot open shared object file: No such file or directory

    sudo yum -y install libXext.i686 libXext.x86_64 libXext-devel.i686 libXext-devel.x86_64
    

    ZLIB_1.2.9 not found

    .../icc2/O-2018.06-SP1/linux64/nwtn/bin/icc2_exec: .../icc2/O-2018.06-SP1/linux64/nwtn/bin/../shlib/libz.so.1: version `ZLIB_1.2.9' not found (required by /lib64/libpng16.so.16)`
    

    need rebuild libpng16 to reduce version

     CC=gcc-6.5.0-PATH/gcc ./configure --prefix=/usr
    
    形而上者谓之道 形而下者谓之器。
  • 相关阅读:
    GridView中实现可收缩的面板
    android之xml数据解析(Pull)
    android之xml数据解析(DOM)
    android intent 传递list或者对象
    Android之单元测试
    Directx11教程(48) depth/stencil buffer的作用
    Directx11教程(47) alpha blend(4)雾的实现
    Directx11教程41 纹理映射(11)
    Directx11教程40 纹理映射(10)
    Directx11教程(46) alpha blend(3)
  • 原文地址:https://www.cnblogs.com/OneFri/p/15126074.html
Copyright © 2011-2022 走看看