Before installing this software, you must agree to the terms of the license. Press to view the license.
The copyright to this software is owned by
H+BEDV Datentechnik GmbH Tjark Auerbach; Managing Director
查看授权说明可以要按几次空格按键(略)
Do you agree to the license terms? [n] y (输入y键,并按回车按键)
creating /usr/lib/AntiVir ... done 1) installing AntiVir Engine checking for existing /etc/antivir.conf ... not found copying bin/antivir to /usr/lib/AntiVir/ ... done
NOTICE: This system has a prelinker. Prelinking the antivir binary will not work correctly. Either disable prelinking or add /usr/lib/AntiVir as an excluded prelink path.
For example, add '-b /usr/lib/AntiVir' to /etc/prelink.conf
copying vdf/antivir.vdf to /usr/lib/AntiVir/ ... done copying etc/antivir.conf to /etc/ ... done
Enter the path to your key file: [HBEDV.KEY] (默认注册文件,按回车键) copying HBEDV.KEY to /usr/lib/AntiVir/hbedv.key ... done copying script/configantivir to /usr/lib/AntiVir/ ... done linking /usr/bin/antivir to /usr/lib/AntiVir/antivir ... done installation of AntiVir Engine complete
2) installing automatic internet updater An automatic internet updater is available with version 2.0.3-25 of AntiVir MailGate. This is a daemon that will run in the background and automatically check for updates (internet access is required). You may also manually check for updates using:
antivir --update
You do not need to install the automatic internet updater in order to manually check for updates. Please read the README file for more information on updates and how they can best suit you.
Would you like to install the automatic internet updater? [n] (按回车键) automatic internet updater will NOT be installed
3) installing main program copying doc/avmailgate_de.pdf to /usr/lib/AntiVir/ ... done copying bin/avgated to /usr/lib/AntiVir/ ... done copying bin/avgatefwd to /usr/lib/AntiVir/ ... done copying script/avq to /usr/lib/AntiVir/ ... done copying script/rc.avgate.redhat to /usr/lib/AntiVir/avmailgate ... done creating /usr/lib/AntiVir/templates ... done copying doc/MANUAL to /usr/lib/AntiVir/MANUAL.avmailgate ... done copying etc/avmailgate.ignore to /etc/ ... done copying etc/avmailgate.scan to /etc/ ... done copying etc/avmailgate.warn to /etc/ ... done creating /var/spool/avmailgate ... done creating /var/spool/avmailgate/incoming ... done creating /var/spool/avmailgate/outgoing ... done creating /var/spool/avmailgate/rejected ... done
Enter the path where the manual pages will be located: [/usr/share/man]:(照默认路径,按回车键) copying doc/man/avmailgate.conf.5 to /usr/share/man/man5/ ... done copying doc/man/avmailgate.8 to /usr/share/man/man8/ ... done
Would you like AvMailGate to start automatically? [y] (按回车键) setting up startup script ... done installation of main program complete
4) installing GUI (+ SMC support)
Note: The AntiVir Security Management Center (SMC) requires this feature, even if you do not intend to use the GUI.
This product comes with a GUI that allows you to monitor realtime activity, view logs, and configure the product. This tool is optional (not required) for the product to run.
Would you like to install the GUI (+ SMC support)? [n] (按回车键) checking for existing /etc/avmailgate.conf ... not found copying etc/avmailgate.conf to /etc/ ... done GUI will NOT be installed
Note: It is highly recommended that you perform an update now to ensure up-to-date protection. This can be done by running:
antivir --update
Be sure to read the README file for additional information. Thank you for your interest in AntiVir MailGate. =======================================================
三、Perl相关套件的安装 Amavisd-new对Perl的依赖程度相当高,因为它本身大部份都是用Perl写成的包括它的执行档,透过它所需要的Perl模组就可以很清楚地知道了。 官方网站列出它所需的Perl模组,如下: Archive::Tar (Archive-Tar-x.xx) Archive::Zip (Archive-Zip-x.xx) (1.14 or later should be used!) Compress::Zlib (Compress-Zlib-x.xx) Convert::TNEF (Convert-TNEF-x.xx) Convert::UUlib (Convert-UUlib-x.xxx) (stick to the new versions!) MIME::Base64 (MIME-Base64-x.xx) MIME::Parser (MIME-Tools-x.xxxx) (latest version from CPAN - currently 5.415) Mail::Internet (MailTools-1.58 or later have workarounds for Perl 5.8.0 bugs) Net::Server (Net-Server-x.xx) Net::SMTP (libnet-x.xx) (use libnet-1.16 or latter for performance) Digest::md5 (Digest-MD5-x.xx) IO::Stringy (IO-stringy-x.xxx) Time::HiRes (Time-HiRes-x.xx) (use 1.49 or later, some older cause problems) Unix::Syslog (Unix-Syslog-x.xxx) BerkeleyDB with bdb library 3.2 or later (4.2 or later preferred) 这些是基本的模组,也就是说安装Amavisd-new前必需安装以下的Perl模组,少一个都不行。 我们可以透过Perl的CPAN方式来进行安装,先在终端机视窗里执行下面这条指令。 # wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-1.13.tar.gz # tar zxvf Digest-1.13.tar.gz # cd Digest-1.13 # perl Makefile.PL # make # make install
# wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-MD5-2.33.tar.gz # tar zxvf Digest-MD5-2.33.tar.gz # cd Digest-MD5-2.33 # export LC_ALL=C # echo ${LC_ALL} C # perl Makefile.PL # make # make install
# wget http://search.cpan.org/CPAN/authors/id/J/JH/JHI/Time-HiRes-1.82.tar.gz # tar zxvf Time-HiRes-1.82.tar.gz # cd Time-HiRes-1.82 # perl Makefile.PL # make # make install