Change between `quarterly` and `latest` package set used by `pkg` tool in FreeBSD

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











up vote
0
down vote

favorite












The pkg tool in FreeBSD is usually set to draw upon either the quarterly or latest package set. The latest set may churn more often with updates, while the quarterly is meant to be more stable but not the very latest.



➥ How can I switch from one to the other?




Or maybe not?










share|improve this question



























    up vote
    0
    down vote

    favorite












    The pkg tool in FreeBSD is usually set to draw upon either the quarterly or latest package set. The latest set may churn more often with updates, while the quarterly is meant to be more stable but not the very latest.



    ➥ How can I switch from one to the other?




    Or maybe not?










    share|improve this question

























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      The pkg tool in FreeBSD is usually set to draw upon either the quarterly or latest package set. The latest set may churn more often with updates, while the quarterly is meant to be more stable but not the very latest.



      ➥ How can I switch from one to the other?




      Or maybe not?










      share|improve this question















      The pkg tool in FreeBSD is usually set to draw upon either the quarterly or latest package set. The latest set may churn more often with updates, while the quarterly is meant to be more stable but not the very latest.



      ➥ How can I switch from one to the other?




      Or maybe not?







      package-management freebsd pkg






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 25 at 6:50

























      asked Nov 25 at 6:44









      Basil Bourque

      226212




      226212




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          As discussed in the forums, in FreeBSD 10.2, the default changed from latest to quarterly. You may choose to use either.



          To quote the 10.2 Release Notes:




          The default pkg(8) repository set in /etc/pkg/FreeBSD.conf now defaults to the quarterly package set. To use the latest branch (as was the previous default), the comment at the top of /etc/pkg/FreeBSD.conf explains how to disable the default repository and specify an alternative repository. [r285830] (Sponsored by The FreeBSD Foundation)




          The contents of that .conf file in FreeBSD 11.2:



          # $FreeBSD: releng/11.2/etc/pkg/FreeBSD.conf 333474 2018-05-10 23:58:33Z gjb $
          #
          # To disable this repository, instead of modifying or removing this file,
          # create a /usr/local/etc/pkg/repos/FreeBSD.conf file:
          #
          # mkdir -p /usr/local/etc/pkg/repos
          # echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf
          #

          FreeBSD:
          url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly",
          mirror_type: "srv",
          signature_type: "fingerprints",
          fingerprints: "/usr/share/keys/pkg",
          enabled: yes



          As noted in that quote, you need not modify the original file. Instead, create a new file in a different location, based on the original. Then change the “quarterly” to “latest” within that JSON-like text at the bottom.



          mkdir -p /usr/local/etc/pkg/repos
          echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf


          Then change the “quarterly” to “latest” in the url: line of that JSON-like text at the bottom.




          FreeBSD: {
          url: "pkg+http://pkg.FreeBSD.org/$ABI/latest",



          For more info about the locations of these files, see this Answer by Mateusz Piotrowski on a related Question.






          share|improve this answer






















            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2funix.stackexchange.com%2fquestions%2f483990%2fchange-between-quarterly-and-latest-package-set-used-by-pkg-tool-in-freebs%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            As discussed in the forums, in FreeBSD 10.2, the default changed from latest to quarterly. You may choose to use either.



            To quote the 10.2 Release Notes:




            The default pkg(8) repository set in /etc/pkg/FreeBSD.conf now defaults to the quarterly package set. To use the latest branch (as was the previous default), the comment at the top of /etc/pkg/FreeBSD.conf explains how to disable the default repository and specify an alternative repository. [r285830] (Sponsored by The FreeBSD Foundation)




            The contents of that .conf file in FreeBSD 11.2:



            # $FreeBSD: releng/11.2/etc/pkg/FreeBSD.conf 333474 2018-05-10 23:58:33Z gjb $
            #
            # To disable this repository, instead of modifying or removing this file,
            # create a /usr/local/etc/pkg/repos/FreeBSD.conf file:
            #
            # mkdir -p /usr/local/etc/pkg/repos
            # echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf
            #

            FreeBSD:
            url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly",
            mirror_type: "srv",
            signature_type: "fingerprints",
            fingerprints: "/usr/share/keys/pkg",
            enabled: yes



            As noted in that quote, you need not modify the original file. Instead, create a new file in a different location, based on the original. Then change the “quarterly” to “latest” within that JSON-like text at the bottom.



            mkdir -p /usr/local/etc/pkg/repos
            echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf


            Then change the “quarterly” to “latest” in the url: line of that JSON-like text at the bottom.




            FreeBSD: {
            url: "pkg+http://pkg.FreeBSD.org/$ABI/latest",



            For more info about the locations of these files, see this Answer by Mateusz Piotrowski on a related Question.






            share|improve this answer


























              up vote
              0
              down vote













              As discussed in the forums, in FreeBSD 10.2, the default changed from latest to quarterly. You may choose to use either.



              To quote the 10.2 Release Notes:




              The default pkg(8) repository set in /etc/pkg/FreeBSD.conf now defaults to the quarterly package set. To use the latest branch (as was the previous default), the comment at the top of /etc/pkg/FreeBSD.conf explains how to disable the default repository and specify an alternative repository. [r285830] (Sponsored by The FreeBSD Foundation)




              The contents of that .conf file in FreeBSD 11.2:



              # $FreeBSD: releng/11.2/etc/pkg/FreeBSD.conf 333474 2018-05-10 23:58:33Z gjb $
              #
              # To disable this repository, instead of modifying or removing this file,
              # create a /usr/local/etc/pkg/repos/FreeBSD.conf file:
              #
              # mkdir -p /usr/local/etc/pkg/repos
              # echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf
              #

              FreeBSD:
              url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly",
              mirror_type: "srv",
              signature_type: "fingerprints",
              fingerprints: "/usr/share/keys/pkg",
              enabled: yes



              As noted in that quote, you need not modify the original file. Instead, create a new file in a different location, based on the original. Then change the “quarterly” to “latest” within that JSON-like text at the bottom.



              mkdir -p /usr/local/etc/pkg/repos
              echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf


              Then change the “quarterly” to “latest” in the url: line of that JSON-like text at the bottom.




              FreeBSD: {
              url: "pkg+http://pkg.FreeBSD.org/$ABI/latest",



              For more info about the locations of these files, see this Answer by Mateusz Piotrowski on a related Question.






              share|improve this answer
























                up vote
                0
                down vote










                up vote
                0
                down vote









                As discussed in the forums, in FreeBSD 10.2, the default changed from latest to quarterly. You may choose to use either.



                To quote the 10.2 Release Notes:




                The default pkg(8) repository set in /etc/pkg/FreeBSD.conf now defaults to the quarterly package set. To use the latest branch (as was the previous default), the comment at the top of /etc/pkg/FreeBSD.conf explains how to disable the default repository and specify an alternative repository. [r285830] (Sponsored by The FreeBSD Foundation)




                The contents of that .conf file in FreeBSD 11.2:



                # $FreeBSD: releng/11.2/etc/pkg/FreeBSD.conf 333474 2018-05-10 23:58:33Z gjb $
                #
                # To disable this repository, instead of modifying or removing this file,
                # create a /usr/local/etc/pkg/repos/FreeBSD.conf file:
                #
                # mkdir -p /usr/local/etc/pkg/repos
                # echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf
                #

                FreeBSD:
                url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly",
                mirror_type: "srv",
                signature_type: "fingerprints",
                fingerprints: "/usr/share/keys/pkg",
                enabled: yes



                As noted in that quote, you need not modify the original file. Instead, create a new file in a different location, based on the original. Then change the “quarterly” to “latest” within that JSON-like text at the bottom.



                mkdir -p /usr/local/etc/pkg/repos
                echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf


                Then change the “quarterly” to “latest” in the url: line of that JSON-like text at the bottom.




                FreeBSD: {
                url: "pkg+http://pkg.FreeBSD.org/$ABI/latest",



                For more info about the locations of these files, see this Answer by Mateusz Piotrowski on a related Question.






                share|improve this answer














                As discussed in the forums, in FreeBSD 10.2, the default changed from latest to quarterly. You may choose to use either.



                To quote the 10.2 Release Notes:




                The default pkg(8) repository set in /etc/pkg/FreeBSD.conf now defaults to the quarterly package set. To use the latest branch (as was the previous default), the comment at the top of /etc/pkg/FreeBSD.conf explains how to disable the default repository and specify an alternative repository. [r285830] (Sponsored by The FreeBSD Foundation)




                The contents of that .conf file in FreeBSD 11.2:



                # $FreeBSD: releng/11.2/etc/pkg/FreeBSD.conf 333474 2018-05-10 23:58:33Z gjb $
                #
                # To disable this repository, instead of modifying or removing this file,
                # create a /usr/local/etc/pkg/repos/FreeBSD.conf file:
                #
                # mkdir -p /usr/local/etc/pkg/repos
                # echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf
                #

                FreeBSD:
                url: "pkg+http://pkg.FreeBSD.org/$ABI/quarterly",
                mirror_type: "srv",
                signature_type: "fingerprints",
                fingerprints: "/usr/share/keys/pkg",
                enabled: yes



                As noted in that quote, you need not modify the original file. Instead, create a new file in a different location, based on the original. Then change the “quarterly” to “latest” within that JSON-like text at the bottom.



                mkdir -p /usr/local/etc/pkg/repos
                echo "FreeBSD: enabled: no " > /usr/local/etc/pkg/repos/FreeBSD.conf


                Then change the “quarterly” to “latest” in the url: line of that JSON-like text at the bottom.




                FreeBSD: {
                url: "pkg+http://pkg.FreeBSD.org/$ABI/latest",



                For more info about the locations of these files, see this Answer by Mateusz Piotrowski on a related Question.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 25 at 6:50

























                answered Nov 25 at 6:44









                Basil Bourque

                226212




                226212



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • 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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2funix.stackexchange.com%2fquestions%2f483990%2fchange-between-quarterly-and-latest-package-set-used-by-pkg-tool-in-freebs%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

                    Peggy Mitchell

                    Palaiologos

                    The Forum (Inglewood, California)