Solved ///usr/src/contrib/tzdata/zone1970.tab: No such file or directory

Hi

I cannot update my FreeBSD 10.0-RELEASE due to the following problem:
Code:
# /usr/sbin/freebsd-update fetch
WARNING: FreeBSD 10.0-RELEASE is approaching its End-of-Life date.
It is strongly recommended that you upgrade to a newer
release within the next 2 months.
# freebsd-update install
Installing updates...install: ///usr/src/contrib/tzdata/zone1970.tab: No such file or directory
done.
What's wrong?
 
Sorry,

# mkdir -p /usr/src/contrib/tzdata/

solved my problem:

Code:
# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... 5 mirrors found.
Fetching metadata signature for 10.0-RELEASE from update6.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

The following files will be added as part of updating to 10.0-RELEASE-p12:
/usr/src/contrib/tzdata/zone1970.tab
# mkdir -p /usr/src/contrib/tzdata/
# freebsd-update install
Installing updates... done.
 
Back
Top