| ... |
... |
@@ -60,7 +60,7 @@ |
| 60 |
60 |
; Update the package list: |
| 61 |
61 |
; {{code language="shell"}} sudo apt-get update {{/code}} |
| 62 |
62 |
|
| 63 |
|
-; Install //ClamAV// and //ClamAV//-daemon: |
|
63 |
+; Install //ClamAV// and //ClamAV// daemon: |
| 64 |
64 |
; {{code language="shell"}} sudo apt-get install clamav clamav-daemon -y {{/code}} |
| 65 |
65 |
|
| 66 |
66 |
=== Update the virus signature database === |
| ... |
... |
@@ -70,12 +70,12 @@ |
| 70 |
70 |
; Terminate the automatic //freshclam// process: |
| 71 |
71 |
; {{code language="shell"}} sudo systemctl stop clamav-freshclam {{/code}} |
| 72 |
72 |
|
| 73 |
|
-; Manually update virus signature database: |
|
73 |
+; Manually update virus signature databank: |
| 74 |
74 |
; {{code language="shell"}} sudo freshclam {{/code}} |
| 75 |
75 |
|
| 76 |
|
-=== Configuration //ClamAV//-daemon === |
|
76 |
+=== Configuration //ClamAV//-Daemon === |
| 77 |
77 |
|
| 78 |
|
-//ClamAV//-daemon is the process running in the background on the server, which is addressed for the virus scan. This is done via TCP and must be configured accordingly. |
|
78 |
+//ClamAV//-Daemon is the process running in the background on the server, which is addressed for the virus scan. This is done via TCP and must be configured accordingly. |
| 79 |
79 |
|
| 80 |
80 |
For this purpose, the configuration file under: // /etc/clamav/clamd.conf // should be adapted. |
| 81 |
81 |
|
| ... |
... |
@@ -85,32 +85,32 @@ |
| 85 |
85 |
Use the arrow keys to navigate to the end of the file. |
| 86 |
86 |
|
| 87 |
87 |
; Add //TCPAddr 127.0.0.1 // |
| 88 |
|
-; Add //TCPSocket 3310 // |
|
88 |
+; Adding //TCPSocket 3310 // |
| 89 |
89 |
|
| 90 |
90 |
{{lightbox image="en_clamd.conf.png"/}} |
| 91 |
91 |
|
| 92 |
|
-; Specify root rights for //ClamAV//-daemon |
| 93 |
|
-: To do this, the row //User clamav// has to be changed to //User root// in this file. |
|
92 |
+; //ClamAV//-Give root rights to daemon |
|
93 |
+To do this, the entry //User clamav// must be changed to //User root// in this file. |
| 94 |
94 |
|
| 95 |
95 |
Now you can save and exit with //Ctrl + X//. Confirm with //Y// and the Enter key. |
| 96 |
96 |
|
| 97 |
|
-=== Starting the //ClamAV//-daemon Service === |
|
97 |
+=== Starting the //ClamAV//-Daemon Service === |
| 98 |
98 |
|
| 99 |
99 |
Now the service can be started. |
| 100 |
100 |
|
| 101 |
|
-: Start the //ClamAV//-daemon Service: |
|
101 |
+: Start the //ClamAV//-Daemon Service: |
| 102 |
102 |
; {{code language="shell"}} sudo systemctl start clamav-daemon.service {{/code}} |
| 103 |
103 |
|
| 104 |
104 |
=== Checking the availability of the service === |
| 105 |
105 |
|
| 106 |
|
-In order for this plugin to be able to address the //ClamAV//-daemon service, the service must be listening in the right place - in this case at //127.0.0.1:3310//. This can be checked in the server's terminal. |
|
106 |
+In order for this plugin to be able to address the //ClamAV// daemon service, the service must be listening in the right place - in this case at //127.0.0.1:3310//. This can be checked in the server's terminal. |
| 107 |
107 |
|
| 108 |
|
-Using //netstat// the TCP socket of the //ClamAV//-daemon service can be examined. |
|
108 |
+Using //netstat// the TCP socket of the //ClamAV// daemon service can be examined. |
| 109 |
109 |
; {{code language="shell"}} sudo netstat -anp | grep -E "(clam)" {{/code}} |
| 110 |
110 |
|
| 111 |
111 |
{{lightbox image="en_tcp_test.png"/}} |
| 112 |
112 |
|
| 113 |
|
-If no line starting with //tcp// is seen or a different //host:port// combination is seen as //127.0.0.1:3310//, the configuration has to be checked again. |
|
113 |
+If no line starting with //tcp// is seen or a different //host:port// combination is seen as //127.0.0.1:3310//, the configuration must be checked again. |
| 114 |
114 |
|
| 115 |
115 |
== Example configuration == |
| 116 |
116 |
|