Solved [SOLVED] Question about freebsd-update

Hi, I am using FreeBSD 9.2-RELEASE-p6. This is the output of the freebsd-update fetch command on my system:
Code:
# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... 5 mirrors found.
Fetching metadata signature for 9.2-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

The following files will be updated as part of updating to 9.2-RELEASE-p10:
/boot/kernel/kernel
/boot/kernel/kernel.symbols
/boot/kernel/linker.hints
/usr/include/openssl/ssl3.h
/usr/include/sys/proc.h
/usr/lib/libgssapi_krb5.a
/usr/lib/libgssapi_krb5.so.10
/usr/lib/libgssapi_krb5_p.a
/usr/lib/libmagic.a
/usr/lib/libmagic.so.4
/usr/lib/libmagic_p.a
/usr/lib/libpam.a
/usr/lib/libpam.so.5
/usr/lib/libssl.a
/usr/lib/libssl.so.6
/usr/lib/libssl_p.a
/usr/lib32/libgssapi_krb5.a
/usr/lib32/libgssapi_krb5.so.10
/usr/lib32/libgssapi_krb5_p.a
/usr/lib32/libmagic.a
/usr/lib32/libmagic.so.4
/usr/lib32/libmagic_p.a
/usr/lib32/libpam.a
/usr/lib32/libpam.so.5
/usr/lib32/libssl.a
/usr/lib32/libssl.so.6
/usr/lib32/libssl_p.a
/usr/libexec/sendmail/sendmail
/usr/share/misc/magic
/usr/share/misc/magic.mgc
/usr/src/contrib/file/Magdir/commands
/usr/src/contrib/file/ascmagic.c
/usr/src/contrib/file/file.h
/usr/src/contrib/file/funcs.c
/usr/src/contrib/file/softmagic.c
/usr/src/contrib/openpam/lib/openpam_configure.c
/usr/src/contrib/sendmail/src/conf.c
/usr/src/crypto/heimdal/lib/gssapi/krb5/prf.c
/usr/src/crypto/openssl/ssl/d1_both.c
/usr/src/crypto/openssl/ssl/s3_clnt.c
/usr/src/crypto/openssl/ssl/s3_pkt.c
/usr/src/crypto/openssl/ssl/s3_srvr.c
/usr/src/crypto/openssl/ssl/ssl3.h
/usr/src/sys/conf/newvers.sh
/usr/src/sys/kern/kern_exec.c
/usr/src/sys/kern/kern_ktrace.c
/usr/src/sys/kern/uipc_sockbuf.c
/usr/src/sys/netinet/sctp_auth.c
/usr/src/sys/netinet/sctp_indata.c
/usr/src/sys/netinet/sctputil.c
/usr/src/sys/sys/proc.h
/usr/src/sys/vm/vm_map.c

Should I use freebsd-update install or freebsd-update -r 9.2-RELEASE-p10?

Thank you very much.
 
Re: Question about freebsd-update

The former. freebsd-update install will update your system to the latest patchlevel of the release you're running (which would be 9.2-RELEASE-p10), freebsd-update -r xxx will update to a different release version (e.g. 9.3-RELEASE).
 
Re: Question about freebsd-update

There are basically two things you can do with freebsd-update: update the current release that you have to a newer patch level (9.2-RELEASE-p6 to 9.2-RELEASE-p10 for example), or upgrade your current release to a newer release (9.2-RELEASE-p<whatever> to 9.3-RELEASE).

For the first case:
Code:
freebsd-update fetch
freebsd-update install
You have already done the first step, so do the second step to finish.

For the second case (going to a brand new release), you start with:
Code:
freebsd-update -r 9.3-RELEASE upgrade
and then follow the instructions that it gives you (usually running freebsd-update install one or more times) to finish.
 
Back
Top