在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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM