Again, just a note / reminder to myself.
To keep OpenBSD up-to-date on a regular basis:
1 2 3 4 5 |
# apply OS patches syspatch # update installed packages and their dependencies pkg_add -Uu |
And to upgrade between releases:
1 2 3 4 5 6 7 8 9 10 11 |
# upgrade the OS sysmerge # update the OS config files (-d means ask for approval when merging) sysmerge -d # update installed packages and their dependencies pkg_add -Uu # reboot! reboot |
This post was inspired by Solene’s blog post on why she uses OpenBSD so I’ll put a link to it here if anyone’s interested.