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

Clash 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?
package-management freebsd pkg
add a comment |
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?
package-management freebsd pkg
add a comment |
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?
package-management freebsd pkg
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
package-management freebsd pkg
edited Nov 25 at 6:50
asked Nov 25 at 6:44
Basil Bourque
226212
226212
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Nov 25 at 6:50
answered Nov 25 at 6:44
Basil Bourque
226212
226212
add a comment |
add a comment |
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.
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%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
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