ufs root 15.0 installed used old method
followed this https://docs.freebsd.org/en/books/handbook/cutting-edge/#pkgbase
The pkgbasify tool complained about zstd out of date so I installed new on by choosing ignore mismatch.
I then continued the handbook
then these worked:
pkg update -r FreeBSD-base
pkg upgrade -r FreeBSD-base
I went 15.0p10>15.0p11
I then tried https://www.freebsd.org/releases/15.1R/upgrading/#upgrade-pkg
I tried again with
same result
HELP!
followed this https://docs.freebsd.org/en/books/handbook/cutting-edge/#pkgbase
The pkgbasify tool complained about zstd out of date so I installed new on by choosing ignore mismatch.
I then continued the handbook
Code:
root@laptop-thinkpad:~ # cat /usr/local/etc/pkg/repos/FreeBSD-base.conf
FreeBSD-base {
url = "pkg+https://pkg.freebsd.org/${ABI}/base_release_${VERSION_MINOR}";
mirror_type = "srv";
signature_type = "fingerprints";
fingerprints = "/usr/share/keys/pkg";
enabled = yes;
}
changed to
root@laptop-thinkpad:~ # cat /usr/local/etc/pkg/repos/FreeBSD-base.conf
FreeBSD-base {
url = "pkg+https://pkg.freebsd.org/${ABI}/base_latest";
mirror_type = "srv";
signature_type = "fingerprints";
fingerprints = "/usr/share/keys/pkg";
enabled = yes;
}
pkg update -r FreeBSD-base
pkg upgrade -r FreeBSD-base
I went 15.0p10>15.0p11
I then tried https://www.freebsd.org/releases/15.1R/upgrading/#upgrade-pkg
Code:
root@laptop-thinkpad:~ # pkg -oABI=FreeBSD:15:amd64 -oOSVERSION=1501000 upgrade -r FreeBSD-base
Updating FreeBSD-base repository catalogue...
pkg: Repository FreeBSD-base has a wrong packagesite, need to re-create database
Fetching meta.conf: 100% 179 B 0.2 kB/s 00:01
Fetching data: 100% 82 KiB 84.0 kB/s 00:01
pkg: No trusted public keys found
FreeBSD-base repository is up to date.
FreeBSD-base is up to date.
pkg: Repository FreeBSD-base has a wrong packagesite, need to re-create database
pkg: Repository FreeBSD-base cannot be opened. 'pkg update' required
Checking for upgrades (0 candidates): 100%
Processing candidates (0 candidates): 100%
Checking integrity... done (0 conflicting)
Your packages are up to date.
I tried again with
Code:
root@laptop-thinkpad:~ # cat /usr/local/etc/pkg/repos/FreeBSD-base.conf
FreeBSD-base {
url = "pkg+https://pkg.freebsd.org/${ABI}/base_release_${VERSION_MINOR}";
mirror_type = "srv";
signature_type = "fingerprints";
fingerprints = "/usr/share/keys/pkg";
enabled = yes;
}
same result
HELP!