Last active
July 15, 2020 17:50
-
-
Save wholroyd/cc1a0ea943f58266bc23 to your computer and use it in GitHub Desktop.
Installing NextBSD on top of clean FreeBSD 10.x/11.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This was based on the 11.x image found at... | |
## ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/amd64/amd64/ISO-IMAGES/11.0/FreeBSD-11.0-CURRENT-amd64-20150917-r287930-disc1.iso | |
pkg install -y git | |
cd /usr/src | |
git clone http://github.com/nextbsd/nextbsd . | |
make buildworld | |
make buildkernel KERNCONF=GENERIC | |
make installkernel KERNCONF=GENERIC | |
reboot | |
## Enter single user mode "boot -s" from the loader prompt | |
mount -rw / | |
cd /usr/src | |
mergemaster -p (hit enter to all prompts) | |
make installworld | |
mergemaster -iU (skip if it doesn't work) | |
make delete-old | |
reboot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkg install -y git | |
cd /usr/src | |
git clone http://github.com/nextbsd/nextbsd . | |
make buildworld | |
make buildkernel KERNCONF=GENERIC | |
make installkernel KERNCONF=GENERIC | |
reboot | |
## Enter single user mode "boot -s" from the loader prompt | |
mount -rw / | |
cd /usr/src | |
mergemaster -p (hit enter to all prompts) | |
make installworld | |
mergemaster -iU (skip if it doesn't work) | |
make delete-old | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment