Monday, October 9, 2017

symantec enterprise protection and centos 7 notes

 symantec enterprise protection and centos 7 notes  
   
 symantec enterprise protection for linux is way less than nice.  
 there is what i would call "glibc disarray."  
   
 first:  
 # yum install glibclibgcclibX11  
   
 then:  
 # yum install glibc.i686 libgcc.i686 libX11.i686  
   
 do your install and check up on it:  
 # /opt/Symantec/symantec_antivirus/sav info -a  
 Enabled <- yes  
   
 # /opt/Symantec/symantec_antivirus/sav manualscan -s /nfs/mount/ <- scan a decade's worth of work  
   
 # /opt/Symantec/symantec_antivirus/sav info -s <- is the scan running?  
   
 # tail -f -n 30 /var/symantec/sep/Logs/10666666.log <- tell me more  
   
 # ls -la /var/symantec/sep/Quarantine/ <- here be viruses  
   
 to free nfs mounts from the tight grip of sep after you foolishly  
 scan a decade's worth of work.  
   
 # lsof |grep /nfs/mount |grep rtvscand |awk '{print $3}' |grep -o '[0-9]*' |sort -n |uniq |xargs kill -9  
   
 # umount /nfs/mount  
   
 # /opt/Symantec/symantec_antivirus/sav info -a  
 scan engine is malfunctioning  
   
 # /etc/init.d/rtvscand restart  
 
 i dislike logs:
 
 # cd /var/symantec/sep/Logs
 # for i in *.log ; do echo "" > $i ; done  
 # echo "" > /opt/Symantec/LiveUpdate/Logs/lux.log

No comments: