Hi all,
I've upgraded FreeBSD from 13 RELEASE to 14 CURRENT using the following commands :
Unfortunately the command etcupdate -p and -B never worked for me. Everytime I issue them,I get the error : "Conflicts remain from previous update, aborting." ;
grahamperrin told me : "Are you OK with vi as the default editor? vi might appear as part of an etcupdate resolve routine" :
I hate vi. I prefer nano
; But I can use vi occasionally. So,if it is needed to make the script "etcupdate" to work correctly,I can use it for this task. But when the script has updated correctly the components that it wants to update,I want to come back to nano. What command should I issue to switch from nano to vi and viceversa ? thanks.
I've upgraded FreeBSD from 13 RELEASE to 14 CURRENT using the following commands :
Code:
# cd /usr
# mv src src-old
# git clone https://git.FreeBSD.org/src.git /usr/src OR git pull
# cd /usr/src
# make -j4 buildworld
# make -j4 kernel
# shutdown -r now
# etcupdate -p
# cd /usr/src
# make installworld
# etcupdate -B
# shutdown -r now
# pkg delete drm-kmod drm-fbsd13-kmod gpu-firmware-kmod
# cd /usr/ports/
# git pull
# cd graphics/drm-devel-kmod
# make install
# make clean
# cd ../gpu-firmware-kmod
# make install
# make clean
Unfortunately the command etcupdate -p and -B never worked for me. Everytime I issue them,I get the error : "Conflicts remain from previous update, aborting." ;
grahamperrin told me : "Are you OK with vi as the default editor? vi might appear as part of an etcupdate resolve routine" :
I hate vi. I prefer nano
