1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

freebsd-tips: freebsd-update fetch, then install

In end of life (EOL) warning cases: freebsd-update fetch install (the
two commands, combined) may fetch and patch, but not install.

Instead: run the two consecutively. Consistent with installation
information in /releases/ areas and with accepted
https://reviews.freebsd.org/D42722

Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/1096
This commit is contained in:
Graham Perrin 2024-02-02 08:25:41 -07:00 committed by Warner Losh
parent e7951d0b04
commit 7edb49a115

View File

@ -533,9 +533,10 @@ Run "etcupdate extract" once when your sources match your running system, then r
Do you want to do a binary upgrade of your running FreeBSD installation? Use freebsd-update(8).
To install updates and patches for the running branch use
# freebsd-update fetch install
# freebsd-update fetch
# freebsd-update install
To upgrade to a newer release use
Then, to upgrade to a newer release use
# freebsd-update upgrade -r ${name_of_release}
-- Lars Engels <lme@FreeBSD.org>