How To Update ClamAV Installation?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
When I execute sudo freshclam it gives me the following warnings:
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.99 Recommended version: 0.99.2
But sudo apt-get update and sudo apt-get upgrade don't seem to do the trick.
How can I update it?
clamav
add a comment |
When I execute sudo freshclam it gives me the following warnings:
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.99 Recommended version: 0.99.2
But sudo apt-get update and sudo apt-get upgrade don't seem to do the trick.
How can I update it?
clamav
howtoforge.com/community/threads/…
– Frank Schrijver
May 18 '16 at 17:54
@FrankSchrijver That link is very old, and the solutions did not work when I tested just now
– Zanna
May 19 '16 at 7:11
add a comment |
When I execute sudo freshclam it gives me the following warnings:
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.99 Recommended version: 0.99.2
But sudo apt-get update and sudo apt-get upgrade don't seem to do the trick.
How can I update it?
clamav
When I execute sudo freshclam it gives me the following warnings:
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.99 Recommended version: 0.99.2
But sudo apt-get update and sudo apt-get upgrade don't seem to do the trick.
How can I update it?
clamav
clamav
edited May 18 '16 at 21:08
Danibix
1,45611122
1,45611122
asked May 18 '16 at 17:31
Tanuj SinghTanuj Singh
116119
116119
howtoforge.com/community/threads/…
– Frank Schrijver
May 18 '16 at 17:54
@FrankSchrijver That link is very old, and the solutions did not work when I tested just now
– Zanna
May 19 '16 at 7:11
add a comment |
howtoforge.com/community/threads/…
– Frank Schrijver
May 18 '16 at 17:54
@FrankSchrijver That link is very old, and the solutions did not work when I tested just now
– Zanna
May 19 '16 at 7:11
howtoforge.com/community/threads/…
– Frank Schrijver
May 18 '16 at 17:54
howtoforge.com/community/threads/…
– Frank Schrijver
May 18 '16 at 17:54
@FrankSchrijver That link is very old, and the solutions did not work when I tested just now
– Zanna
May 19 '16 at 7:11
@FrankSchrijver That link is very old, and the solutions did not work when I tested just now
– Zanna
May 19 '16 at 7:11
add a comment |
2 Answers
2
active
oldest
votes
From the ClamAV website page on how to upgrade:
If you installed from a package, we suggest you find the approved package from your distro provider and install that. The ClamAV team does not maintain individual packages for every distribution build. If
there are no new packages, you have three options:
- Wait
- Build Clam Package
- Install From Source
It is OK to wait because clamav is still working even though it's not the latest version. That warning is more FYI. Also, you don't need to manually run freshclam. If you type
tail -20 /var/log/clamav/freshclam.log
you should see some more info, telling you that the databases etc have been recently (as in, today) updated. When I do this, I see the same warning as you and the next message is don't panic: see https://github.com/vrtadmin/clamav-faq FAQ page So, don't panic.
I do not recommend compiling from source, as it will not be updated through APT, but here is the guide
Summary:
Uninstall the old version sudo apt remove clamav
Download the tar file from the ClamAV website
extract with tar xf clamav* then cd clamav* and then:
./configure
make
sudo make install
then run
sudo freshclam
As always, see the documentation for more help
add a comment |
Zanna's suggestion about installing from source is the correct solution to the problem.
However a more direct answer to the question is to note that 0.99 is the latest version of clamav for Ubuntu 16.04 (the latest version of Ubuntu). See http://packages.ubuntu.com/xenial/clamav .
The warning from the program indicates there is a new version of clamav upstream (i.e., by the developers of clamav). The latest version for the latest version of Ubuntu may actually be a bit older. As the message is just a warning, you can disregard it. If 0.99 has a "serious" security flaw, then a proper patch will most likely be released.
Installing from source is one solution, but you will have to keep it up-to-date manually -- something that we often forget to do.
I don't know much about clamav, but for virus scanners, what you want to keep up-to-date are the virus definitions. Assuming the version you are using can still have the virus definitions updated, you should be fine.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f774312%2fhow-to-update-clamav-installation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
From the ClamAV website page on how to upgrade:
If you installed from a package, we suggest you find the approved package from your distro provider and install that. The ClamAV team does not maintain individual packages for every distribution build. If
there are no new packages, you have three options:
- Wait
- Build Clam Package
- Install From Source
It is OK to wait because clamav is still working even though it's not the latest version. That warning is more FYI. Also, you don't need to manually run freshclam. If you type
tail -20 /var/log/clamav/freshclam.log
you should see some more info, telling you that the databases etc have been recently (as in, today) updated. When I do this, I see the same warning as you and the next message is don't panic: see https://github.com/vrtadmin/clamav-faq FAQ page So, don't panic.
I do not recommend compiling from source, as it will not be updated through APT, but here is the guide
Summary:
Uninstall the old version sudo apt remove clamav
Download the tar file from the ClamAV website
extract with tar xf clamav* then cd clamav* and then:
./configure
make
sudo make install
then run
sudo freshclam
As always, see the documentation for more help
add a comment |
From the ClamAV website page on how to upgrade:
If you installed from a package, we suggest you find the approved package from your distro provider and install that. The ClamAV team does not maintain individual packages for every distribution build. If
there are no new packages, you have three options:
- Wait
- Build Clam Package
- Install From Source
It is OK to wait because clamav is still working even though it's not the latest version. That warning is more FYI. Also, you don't need to manually run freshclam. If you type
tail -20 /var/log/clamav/freshclam.log
you should see some more info, telling you that the databases etc have been recently (as in, today) updated. When I do this, I see the same warning as you and the next message is don't panic: see https://github.com/vrtadmin/clamav-faq FAQ page So, don't panic.
I do not recommend compiling from source, as it will not be updated through APT, but here is the guide
Summary:
Uninstall the old version sudo apt remove clamav
Download the tar file from the ClamAV website
extract with tar xf clamav* then cd clamav* and then:
./configure
make
sudo make install
then run
sudo freshclam
As always, see the documentation for more help
add a comment |
From the ClamAV website page on how to upgrade:
If you installed from a package, we suggest you find the approved package from your distro provider and install that. The ClamAV team does not maintain individual packages for every distribution build. If
there are no new packages, you have three options:
- Wait
- Build Clam Package
- Install From Source
It is OK to wait because clamav is still working even though it's not the latest version. That warning is more FYI. Also, you don't need to manually run freshclam. If you type
tail -20 /var/log/clamav/freshclam.log
you should see some more info, telling you that the databases etc have been recently (as in, today) updated. When I do this, I see the same warning as you and the next message is don't panic: see https://github.com/vrtadmin/clamav-faq FAQ page So, don't panic.
I do not recommend compiling from source, as it will not be updated through APT, but here is the guide
Summary:
Uninstall the old version sudo apt remove clamav
Download the tar file from the ClamAV website
extract with tar xf clamav* then cd clamav* and then:
./configure
make
sudo make install
then run
sudo freshclam
As always, see the documentation for more help
From the ClamAV website page on how to upgrade:
If you installed from a package, we suggest you find the approved package from your distro provider and install that. The ClamAV team does not maintain individual packages for every distribution build. If
there are no new packages, you have three options:
- Wait
- Build Clam Package
- Install From Source
It is OK to wait because clamav is still working even though it's not the latest version. That warning is more FYI. Also, you don't need to manually run freshclam. If you type
tail -20 /var/log/clamav/freshclam.log
you should see some more info, telling you that the databases etc have been recently (as in, today) updated. When I do this, I see the same warning as you and the next message is don't panic: see https://github.com/vrtadmin/clamav-faq FAQ page So, don't panic.
I do not recommend compiling from source, as it will not be updated through APT, but here is the guide
Summary:
Uninstall the old version sudo apt remove clamav
Download the tar file from the ClamAV website
extract with tar xf clamav* then cd clamav* and then:
./configure
make
sudo make install
then run
sudo freshclam
As always, see the documentation for more help
edited Mar 21 at 16:02
answered May 19 '16 at 8:02
ZannaZanna
51.2k13139243
51.2k13139243
add a comment |
add a comment |
Zanna's suggestion about installing from source is the correct solution to the problem.
However a more direct answer to the question is to note that 0.99 is the latest version of clamav for Ubuntu 16.04 (the latest version of Ubuntu). See http://packages.ubuntu.com/xenial/clamav .
The warning from the program indicates there is a new version of clamav upstream (i.e., by the developers of clamav). The latest version for the latest version of Ubuntu may actually be a bit older. As the message is just a warning, you can disregard it. If 0.99 has a "serious" security flaw, then a proper patch will most likely be released.
Installing from source is one solution, but you will have to keep it up-to-date manually -- something that we often forget to do.
I don't know much about clamav, but for virus scanners, what you want to keep up-to-date are the virus definitions. Assuming the version you are using can still have the virus definitions updated, you should be fine.
add a comment |
Zanna's suggestion about installing from source is the correct solution to the problem.
However a more direct answer to the question is to note that 0.99 is the latest version of clamav for Ubuntu 16.04 (the latest version of Ubuntu). See http://packages.ubuntu.com/xenial/clamav .
The warning from the program indicates there is a new version of clamav upstream (i.e., by the developers of clamav). The latest version for the latest version of Ubuntu may actually be a bit older. As the message is just a warning, you can disregard it. If 0.99 has a "serious" security flaw, then a proper patch will most likely be released.
Installing from source is one solution, but you will have to keep it up-to-date manually -- something that we often forget to do.
I don't know much about clamav, but for virus scanners, what you want to keep up-to-date are the virus definitions. Assuming the version you are using can still have the virus definitions updated, you should be fine.
add a comment |
Zanna's suggestion about installing from source is the correct solution to the problem.
However a more direct answer to the question is to note that 0.99 is the latest version of clamav for Ubuntu 16.04 (the latest version of Ubuntu). See http://packages.ubuntu.com/xenial/clamav .
The warning from the program indicates there is a new version of clamav upstream (i.e., by the developers of clamav). The latest version for the latest version of Ubuntu may actually be a bit older. As the message is just a warning, you can disregard it. If 0.99 has a "serious" security flaw, then a proper patch will most likely be released.
Installing from source is one solution, but you will have to keep it up-to-date manually -- something that we often forget to do.
I don't know much about clamav, but for virus scanners, what you want to keep up-to-date are the virus definitions. Assuming the version you are using can still have the virus definitions updated, you should be fine.
Zanna's suggestion about installing from source is the correct solution to the problem.
However a more direct answer to the question is to note that 0.99 is the latest version of clamav for Ubuntu 16.04 (the latest version of Ubuntu). See http://packages.ubuntu.com/xenial/clamav .
The warning from the program indicates there is a new version of clamav upstream (i.e., by the developers of clamav). The latest version for the latest version of Ubuntu may actually be a bit older. As the message is just a warning, you can disregard it. If 0.99 has a "serious" security flaw, then a proper patch will most likely be released.
Installing from source is one solution, but you will have to keep it up-to-date manually -- something that we often forget to do.
I don't know much about clamav, but for virus scanners, what you want to keep up-to-date are the virus definitions. Assuming the version you are using can still have the virus definitions updated, you should be fine.
answered May 19 '16 at 8:40
RayRay
798520
798520
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f774312%2fhow-to-update-clamav-installation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
howtoforge.com/community/threads/…
– Frank Schrijver
May 18 '16 at 17:54
@FrankSchrijver That link is very old, and the solutions did not work when I tested just now
– Zanna
May 19 '16 at 7:11