upgrade to pkg-1.19.1_3 fails

yes, you will need git to fetch the source in the first place... as of now, you'll probably have to build it from ports, the @tiny flavor is enough.
Thank You for helping and patience! ;)

Could You be so please to forgive my stupidness and give me something like step-by-step how to doing this in my particular case…
 
Could You be so please to forgive my stupidness and give me something like step-by-step how to doing this in my particular case…
Assuming you have a ports tree
Code:
cd /usr/ports/devel/git
make FLAVOR=tiny install
That should get you a working git(1). Then git clone -b releng/14.0 https://git.freebsd.org/src.git /usr/src
From there you can follow the instructions to build world, kernel, etc.


Short, short version:
Code:
cd /usr/src
make -j 4 buildworld buildkernel  # Adjust -j to the number of cores you have to speed up things, this will take a while depending on your hardware
make installkernel
make installworld
etcupdate -B
make -DBATCH_DELETE_OLD_FILES delete-old
make -DBATCH_DELETE_OLD_FILES delete-old-libs
 
Assuming you have a ports tree
Code:
cd /usr/ports/devel/git
make FLAVOR=tiny install
That should get you a working git(1). Then git clone -b releng/14.0 https://git.freebsd.org/src.git /usr/src
From there you can follow the instructions to build world, kernel, etc.


Short, short version:
Code:
cd /usr/src
make -j 4 buildworld buildkernel  # Adjust -j to the number of cores you have to speed up things, this will take a while depending on your hardware
make installkernel
make installworld
etcupdate -B
make -DBATCH_DELETE_OLD_FILES delete-old
make -DBATCH_DELETE_OLD_FILES delete-old-libs
Sorry for late reply.

Unfortunately, a lot of errors on stage of making tiny install.

So, spending several days to obtain sufficient info about installed software, scripts, crone jobs, system configuration modifications, than manually save all .conf (and other configs files), and install from scratch on bare metal from USB drive.

But in any case, THANK YOU SO MUCH for help!

Have a nice sunny day!
 
Back
Top