How to know which version of Certbot is installed?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
1
down vote

favorite












I use a Ubuntu 16.04 with Nginx and Certbot.



I tried to execute, for example:



certbot -v
certbot -V
certbot --version
man certbot


none gave any relevant output. How could I know the version currently installed in my Ubuntu?










share|improve this question























  • What Ubuntu are you on? Are you using the Certbot PPA or no?
    – Thomas Ward♦
    Apr 10 at 16:11










  • Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
    – user9303970
    Apr 10 at 16:13














up vote
1
down vote

favorite












I use a Ubuntu 16.04 with Nginx and Certbot.



I tried to execute, for example:



certbot -v
certbot -V
certbot --version
man certbot


none gave any relevant output. How could I know the version currently installed in my Ubuntu?










share|improve this question























  • What Ubuntu are you on? Are you using the Certbot PPA or no?
    – Thomas Ward♦
    Apr 10 at 16:11










  • Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
    – user9303970
    Apr 10 at 16:13












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I use a Ubuntu 16.04 with Nginx and Certbot.



I tried to execute, for example:



certbot -v
certbot -V
certbot --version
man certbot


none gave any relevant output. How could I know the version currently installed in my Ubuntu?










share|improve this question















I use a Ubuntu 16.04 with Nginx and Certbot.



I tried to execute, for example:



certbot -v
certbot -V
certbot --version
man certbot


none gave any relevant output. How could I know the version currently installed in my Ubuntu?







versions letsencrypt






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 10 at 16:11

























asked Apr 10 at 16:02









user9303970

81112




81112











  • What Ubuntu are you on? Are you using the Certbot PPA or no?
    – Thomas Ward♦
    Apr 10 at 16:11










  • Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
    – user9303970
    Apr 10 at 16:13
















  • What Ubuntu are you on? Are you using the Certbot PPA or no?
    – Thomas Ward♦
    Apr 10 at 16:11










  • Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
    – user9303970
    Apr 10 at 16:13















What Ubuntu are you on? Are you using the Certbot PPA or no?
– Thomas Ward♦
Apr 10 at 16:11




What Ubuntu are you on? Are you using the Certbot PPA or no?
– Thomas Ward♦
Apr 10 at 16:11












Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
– user9303970
Apr 10 at 16:13




Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
– user9303970
Apr 10 at 16:13










2 Answers
2






active

oldest

votes

















up vote
1
down vote



accepted










14.04 and 16.04 systems (and NOT using the PPA):



Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.



If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.



To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.




14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:




At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.




As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.



And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.



To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):



$ apt-cache policy certbot | grep -i Installed
Installed: 0.22.2-1+ubuntu16.04.1+certbot+1


As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.






share|improve this answer



























    up vote
    0
    down vote













    If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.



    Try this command below:



    sudo /PATH/TO/certbot-auto --version





    share|improve this answer






















    • I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
      – abu_bua
      Aug 27 at 14:52










    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',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    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%2f1023709%2fhow-to-know-which-version-of-certbot-is-installed%23new-answer', 'question_page');

    );

    Post as a guest






























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    14.04 and 16.04 systems (and NOT using the PPA):



    Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.



    If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.



    To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.




    14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:




    At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.




    As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.



    And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.



    To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):



    $ apt-cache policy certbot | grep -i Installed
    Installed: 0.22.2-1+ubuntu16.04.1+certbot+1


    As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.






    share|improve this answer
























      up vote
      1
      down vote



      accepted










      14.04 and 16.04 systems (and NOT using the PPA):



      Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.



      If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.



      To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.




      14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:




      At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.




      As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.



      And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.



      To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):



      $ apt-cache policy certbot | grep -i Installed
      Installed: 0.22.2-1+ubuntu16.04.1+certbot+1


      As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.






      share|improve this answer






















        up vote
        1
        down vote



        accepted







        up vote
        1
        down vote



        accepted






        14.04 and 16.04 systems (and NOT using the PPA):



        Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.



        If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.



        To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.




        14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:




        At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.




        As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.



        And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.



        To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):



        $ apt-cache policy certbot | grep -i Installed
        Installed: 0.22.2-1+ubuntu16.04.1+certbot+1


        As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.






        share|improve this answer












        14.04 and 16.04 systems (and NOT using the PPA):



        Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.



        If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.



        To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.




        14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:




        At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.




        As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.



        And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.



        To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):



        $ apt-cache policy certbot | grep -i Installed
        Installed: 0.22.2-1+ubuntu16.04.1+certbot+1


        As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 10 at 16:18









        Thomas Ward♦

        41.4k23112166




        41.4k23112166






















            up vote
            0
            down vote













            If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.



            Try this command below:



            sudo /PATH/TO/certbot-auto --version





            share|improve this answer






















            • I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
              – abu_bua
              Aug 27 at 14:52














            up vote
            0
            down vote













            If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.



            Try this command below:



            sudo /PATH/TO/certbot-auto --version





            share|improve this answer






















            • I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
              – abu_bua
              Aug 27 at 14:52












            up vote
            0
            down vote










            up vote
            0
            down vote









            If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.



            Try this command below:



            sudo /PATH/TO/certbot-auto --version





            share|improve this answer














            If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.



            Try this command below:



            sudo /PATH/TO/certbot-auto --version






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Aug 27 at 14:50









            abu_bua

            2,16031021




            2,16031021










            answered Aug 27 at 12:08









            Kyle KIM

            1011




            1011











            • I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
              – abu_bua
              Aug 27 at 14:52
















            • I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
              – abu_bua
              Aug 27 at 14:52















            I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
            – abu_bua
            Aug 27 at 14:52




            I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
            – abu_bua
            Aug 27 at 14:52

















             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1023709%2fhow-to-know-which-version-of-certbot-is-installed%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            Trouble downloading packages list due to a “Hash sum mismatch” error

            How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

            How do I move numbers in filenames, in a batch renaming operation?