CentOS7/CentOS8下安装SymantecEndpointProtection14(sep)

虽说linux下病毒很少,但是做服务器有windows病毒的话还是会感染正常电脑,于是安装杀毒软件就变得有必要,可以用的免费的就那么几个,SymantecEndpointProtection14是个很好的选择,但是直接安装会报错,分享下安装方法。

直接安装会提示

Error: Installation requires 32bits glibc library. Please install it and try again.
Warning: X11 libraries are missing, GUI component will not be installed!

首先设置国内源地址,这样安装速度会快一点,不需要或者已经设置的请跳过。.
#在CentOS中配置使用网易或阿里的开源镜像

wget http://mirrors.aliyun.com/repo/Centos-7.repo
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo

任选其一

yum clean all # 清除系统所有的yum缓存
yum makecache # 生成yum缓存

#安装epel源

yum list | grep epel-release
yum install -y epel-release

#再次清除系统yum缓存,并重新生成新的yum缓存

yum clean all # 清除系统所有的yum缓存
yum makecache # 生成yum缓存

#查看系统可用的yum源和所有的yum源

yum repolist enabled
yum repolist all

#安装必备组件

sudo yum install unzip
sudo yum install glibc.i686
sudo yum install gcc

#解压sep并安装

sudo unzip -d sep SymantecEndpointProtection.zip
cd sep
sudo chmod 777 install.sh pkg.sig
sudo ./install.sh -i

#查看安装状态

cd /opt/Symantec/symantec_antivirus
./sav info -p

本人菜鸟,参考了国外资料安装成功,分享给需要的人。

Logo

更多推荐