Installazione Clamav in Debian: Difference between revisions
Jump to navigation
Jump to search
m →Pinning |
mNo edit summary |
||
| Line 1: | Line 1: | ||
== Aggiunta fonte Apt == | == Aggiunta fonte Apt == | ||
<pre> | <pre> | ||
cat | sudo cat | sudo tee -a /etc/apt/sources.list > /dev/null <<EOFile | ||
deb http://volatile.debian.org/debian-volatile etch/volatile main contrib non-free | deb http://volatile.debian.org/debian-volatile etch/volatile main contrib non-free | ||
EOFile | EOFile | ||
| Line 8: | Line 8: | ||
== Pinning == | == Pinning == | ||
<pre> | <pre> | ||
cat | cat | sudo tee -a /etc/apt/preferences > /dev/null <<EOFile | ||
Package: clamav | Package: clamav | ||
Pin: origin volatile.debian.org | Pin: origin volatile.debian.org | ||
| Line 21: | Line 21: | ||
== Installazione == | == Installazione == | ||
<pre> | <pre> | ||
apt-get update && apt-get upgrade && apt-get install clamav clamav-daemon | sudo apt-get update && sudo apt-get upgrade && sudo apt-get install clamav clamav-daemon | ||
</pre> | </pre> | ||
== Installazione decompressori == | |||
sudo apt-get install unrar lha arj unzip | |||
Revision as of 06:31, 18 June 2007
Aggiunta fonte Apt
sudo cat | sudo tee -a /etc/apt/sources.list > /dev/null <<EOFile deb http://volatile.debian.org/debian-volatile etch/volatile main contrib non-free EOFile
Pinning
cat | sudo tee -a /etc/apt/preferences > /dev/null <<EOFile Package: clamav Pin: origin volatile.debian.org Pin-Priority: 1100 Package: * Pin: release a=etch Pin-Priority: 700 EOFile
Installazione
sudo apt-get update && sudo apt-get upgrade && sudo apt-get install clamav clamav-daemon
Installazione decompressori
sudo apt-get install unrar lha arj unzip