Most people think that linux does not have to worry about viruses. I am no exception, but recently I have seen many friends installing firewalls and anti-virus software on the forum, so I have installed AntiVir myself. Now I will share my installation experience with you.
Part 1: linux Virus
Early Linux users were generally professionals. Even today, despite the surge in users, typical users are still those who have a good computer background and are willing to help others, linux experts prefer to encourage new users to support such a cultural spirit. Because of this, few people in the Linux User Group develop viruses and spread viruses, but we can install anti-virus software to wipe Microsoft's ass. Of course, the premise is that your windows is installed on the fat partition, otherwise, it makes no sense if the virus cannot be killed.
Part 2 Declaration on AntiVir software
Strictly speaking, this software is not very convenient, but it is free and can be used continuously. There are no functional limitations on the linux platform, but it is a bit disappointing, that is, the software GUI must be used in an English environment. Another important part is AvGuard, which seems to be a daemon process, it must be installed with a kernel module called dazuko to operate properly. Therefore, after repeated installation, I found the dazuko Installation Method in the debian document to make it run normally.
So now you have a choice. If you need a GUI, you must take the following settings to make ubuntu an English environment for a period of time, and you must have a jre. If you need the AvGurad daemon, you must install the gcc-3.4, basic compilation tools, debhelper, Module-Assistant, and the most important dazuko.
If you do not need the above two items, you can simply install them.
This question is raised to help you prepare yourself.
Part 3 download and register AntiVir
The personal version of AntiVir is free of charge. You can try it without any restrictions, because the download speed on the official website is too slow. I have put it in shared FTP, for how to use shared FTP, refer to my post in the shared area.
You need to download the installation files dazuko-source and test license.
Part 4 Preparations for installing AntiVir
First, install dazuko. If you do not want to install AvGuard, skip to the next chapter. If you want to install dazuko, do not use the source to install it. The source version is old and cannot be compiled. Install dazuko downloaded from shared FTP. Installation Method:
Code:
dpkg -i dazuko-source_2.1.1-1_all.deb |
Then, in order to compile it into the kernel, we will do the following:
Code:
sudo apt-get install module-assistant debhelper gcc-3.4 |
Next, run module-assistant.
Code:
sudo module-assistant prepare |
This program will automatically download some compilation tools that you do not have.
Code:
In this way, you can compile dazuko.
According to the document on debian, the capability module conflicts with dazuko, so we must set dazuko. The method is as follows:
Code:
sudo gedit /etc/modprobe.d/dazuko |
Add the following code:
Code:
install dazuko modprobe -r capability;\modprobe -i dazuko; \modprobe -i capability |
Then edit the modules file:
Code:
Add a dazuko statement at the bottom of the file.
Then run this module without restarting. You can do this as follows:
Code:
sudo rmmod capabilitysudo modprobe dazukosudo modprobe capability |
This is the end of preparation.