linux下sophos,clamav+clamtk杀毒软件
以deepin为例
avast for linux sophos for linux comodo for linux 目前能够在官网找到。
先说clamav
clamav 听说很活跃,clamav是命令行的,clamtk是基于clamav的GUI界面。
clamav能正常更新。
直接apt安装即可
sudo apt-get install clamav
sudo apt-get install clamtk
关于clamav的命令行使用不在介绍。
下面是clamtk的界面,非常方便。这里不在介绍。
下面是 gufw
同样直接安装
sudo apt-get install gufw
下面介绍sophos for linux 的使用和安装。
下载 https://www.sophos.com/en-us/products/free-tools/sophos-antivirus-for-linux.aspx
Sophos Anti-Virus for Linux
startup guide
https://www.sophos.com/en-us/medialibrary/PDFs/documentation/savl_9_sgeng.pdf
Sophos Anti-Virus for Linux
configuration guide
https://www.sophos.com/en-us/medialibrary/PDFs/documentation/savl_9_cgeng.pdf
关于使用,这个网址说的比较好 本文引用一些网址内容也引用
https://www.bleepingcomputer.com/forums/t/578679/sophos-antivirus-for-linux/
今天试了试,发现sophos for linux 现在有 free 版本和 supported版本 ,后者 是付费版本(升级需要账号密码)
free版本虽然已经停止支持,但是今天发现还能更新。
$ sudo /opt/sophos-av/bin/savupdate
Updating from versions - SAV: 9.15.0, Engine: 3.72.1, Data: 5.50
Updating Sophos Anti-Virus....
Updating SAVScan on-demand scanner
Updating Virus Engine and Data
Updating Manifest
Update completed.
Updated to versions - SAV: 9.15.0, Engine: 3.72.1, Data: 5.56
Successfully updated Sophos Anti-Virus from sdds:SOPHOS
savscan -v 查询信息中发现 有今天更新的ide
Data file name : /opt/sophos-av/lib/sav/miner-ps.ide
Data file type : IDE
Data file date : 17 October 2018, 16:56:27
Data file status : Loaded
Data file name : /opt/sophos-av/lib/sav/trick-iy.ide
Data file type : IDE
Data file date : 17 October 2018, 23:10:25
Data file status : Loaded
Data file name : /opt/sophos-av/lib/sav/age-azym.ide
Data file type : IDE
Data file date : 18 October 2018, 05:13:42
Data file status : Loaded
用clamav查杀windows下的病毒不是特别好使(测试没查出有vbe病毒)。
不过 clamav可以分析,用其他的引擎查杀辅助判断。
sophos for linux 可以查杀windows下的病毒。
关于配置 sophos的web GUI界面,我没有配置出来,可能是系统原因,也可能是已经不支持了。
linux下sophos,clamav+clamtk杀毒软件的更多相关文章
- linux下对clamav杀毒软件的安装和配置
下载安装 首先安装zlib库: # yum install zlib zlib-devel //安装可忽略 下载安装clamav源码包 clamav管网:http://www.clamav.net/d ...
- linux下使用clamav排查病毒
clamav wget http://www.clamav.net/downloads/production/clamav-0.102.0.tar.gz ### Installyum -y insta ...
- centos clamav杀毒软件安装配置及查杀,没想到linux下病毒比windows还多!
centos clamav杀毒软件安装配置及查杀,没想到linux下病毒比windows还多! 一.手动安装 1.下载(官网) cd /soft wget http://www.clam ...
- Linux下杀毒软件clamav的安装和使用
发表于:2017年6月30日 分类:Linux/Unix 最近发现有台服务器中毒了,手动去查杀总是会有遗漏,最后安装了Linux下的杀毒软件clamav,使用起来还是不错的. 环境:Linux 6 ...
- Linux下Clamav 杀毒软件安装使用文档
一.安装Clamav杀毒工具 0.安装Clamav需要的依赖包 yum install libxml* openssl* -y 1.创建clamav组 groupadd clamav 2.创建clam ...
- Linux 下杀毒可用工具 clamav
clamav 杀毒工具:Linux下可用的杀毒工具: 下载地址: 最新 包 0.101 官网下载地址:http://www.clamav.net/downloads最新包地址: https://cla ...
- 转 linux下ClamAV使用
linux下ClamAV使用 第一步:Clamav下载http://www.clamav.net/downloads#yuminstall wget –y第二步:创建clamav用户和组groupad ...
- linux下如何安装软件(转载)
来源:http://zhidao.baidu.com/link?url=5oR8WxygPvVMhSZvXQahYKm01JPTmQnEUjbQF562Yxgd3r6bYpki1ZPcHAsij6E4 ...
- NodeJs在Linux下使用的各种问题
环境:ubuntu16.04 ubuntu中安装NodeJs 通过apt-get命令安装后发现只能使用nodejs,而没有node命令 如果想避免这种情况请看下面连接的这种安装方式: 拓展见:Linu ...
随机推荐
- Jenkins构建集成部署
一.可运行Jar配置 1. 设置JDK 2. 设置源码 设置构建脚本 #!/bin/bash export BUILD_ID=xxxxxx_content_170 myPath="/data ...
- PHP 图片base64 互转
<?php /* http://tool.css-js.com/base64.html 透明图片 <img src="data:image/jpg;base64,iVBORw0K ...
- LeetCode题解38.Count and Say
38. Count and Say The count-and-say sequence is the sequence of integers beginning as follows: 1, 11 ...
- [Swift]LeetCode529. 扫雷游戏 | Minesweeper
Let's play the minesweeper game (Wikipedia, online game)! You are given a 2D char matrix representin ...
- [Swift]LeetCode792. 匹配子序列的单词数 | Number of Matching Subsequences
Given string S and a dictionary of words words, find the number of words[i] that is a subsequence of ...
- python—day15 包的认识、执行顺序、执行流程、循环导入、包的导入、绝对、相对导入
一.包的认识 包通过文件夹来管理一系列功能相近的模块 包:一系列模块的集合体 重点:包中一定有一个专门用来管理包中所有模块的文件 包名:存放一系列模块的文件夹名字 包名(包对象)存放的是管理模 ...
- java在方法中获取request对象
在spring的普通类中: HttpServletRequest request = ((ServletRequestAttributes)RequestContextHolder.getReques ...
- AbstractQueuedSynchronizer源码分析(ReentrantLock锁的实现)
1. 前言 Java中好多地方用到AbstractQueuedSynchronizer(PS:简称AQS),比如ReentrantLock.线程池,这部分在面试的时候也经常被问到,今天以Reentr ...
- 关于 IdentityServer4 中的 Jwt Token 与 Reference Token
OpenID Connect(Core),OAuth 2.0(RFC 6749),JSON Web Token (JWT)(RFC 7519) 之间有着密不可分联系,对比了不同语言的实现,还是觉得 I ...
- Asp.Net SignalR Hub集线器
集线器Hub类 使用持久连接类去开发是有些困难的,因为基于事件的开发方式,我们可以进行操作的地方也仅仅只是OnReceived事件内,这有些像websocket的方式.我们迫切的需要一种更人性化,更为 ...