How To Update ClamAV Installation?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







8















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?










share|improve this question

























  • 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




















8















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?










share|improve this question

























  • 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
















8












8








8


1






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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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





















  • 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












2 Answers
2






active

oldest

votes


















6














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






share|improve this answer

































    5














    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.






    share|improve this answer
























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      6














      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






      share|improve this answer






























        6














        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






        share|improve this answer




























          6












          6








          6







          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






          share|improve this answer















          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







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 21 at 16:02

























          answered May 19 '16 at 8:02









          ZannaZanna

          51.2k13139243




          51.2k13139243

























              5














              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.






              share|improve this answer




























                5














                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.






                share|improve this answer


























                  5












                  5








                  5







                  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.






                  share|improve this answer













                  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.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 19 '16 at 8:40









                  RayRay

                  798520




                  798520






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      Category:香港粉麵

                      List *all* the tuples!

                      Channel [V]