zoukankan      html  css  js  c++  java
  • 在Linux中安装SEP Client

    1. 下载Symantec_Endpoint_Protection_12.1.5_Linux_Client_EN, 解压其中的sep-deb.zip

     
    2. 若直接sudo ./install.sh -i, 会报以下错误
    Starting to install Symantec Endpoint Protection for Linux 
    Performing pre-check...
    Error: Installation requires Oracle Java 1.5 or later whose owner is superuser. Please install the correct version with superuser and Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files, and try again.
    Error: Installation requires 32bits glibc library. Please install it and try again.
    Warning: X11 libraries are missing, GUI component will not be installed!
    Pre-check failed.
    需要安装以下组件:
    sudo apt-get install libc6-i386 (必选, 用来解决上面的error2)
    sudo apt-get install ia32-libs (可选, 既可用来解决上面的warning, 也可以解决error2)
     
    3. 安装JRE用来解决error1
        a. download jre-8u25-linux-x64.gz from Oracle website
        b. tar -xzvf jre-7u25-linux-i586
        c. sudo mkdir /usr/java
        d. sudo cp -R jre1.8.0_25 /usr/java/
        e. sudo vi /etc/environment
                JAVA_HOME="/usr/java/jre1.8.0_25"
                CLASSPATH="$JAVA_HOME/lib" 
                PATH="$JAVA_HOME/bin"
        f. sudo update-alternatives --install /usr/bin/java java /usr/java/jre1.8.0_25/bin/java 1
        g. java -version
        h. sudo cp local_policy.jar /usr/java/jre1.8.0_25/lib/security/
        i. sudo cp US_export_policy.jar /usr/java/jre1.8.0_25/lib/security/
     
    4. sudo ./install.sh -i
  • 相关阅读:
    Configuring the launch of the remote virtual machine to debug
    java LimitedThreadPool
    java并发之SynchronousQueue实现原理
    java 线程池线程忙碌且阻塞队列也满了时给一个拒接的详细报告
    Java程序监控指标
    JDK提供的四种线程池
    Guava的Supplier实现单例
    JMM
    Dubbo源码解读:appendAnnotation [01]
    PCI(Payment Card Industry)合规
  • 原文地址:https://www.cnblogs.com/IvanChen/p/4491946.html
Copyright © 2011-2022 走看看