Freebsd – How to apply updates on OpenBSD, NetBSD, and FreeBSD

freebsdnetbsdopenbsdpackage-management

I'm using OpenBSD for quite a while now. All I do, however is go from one release to the next, always just doing an update. I configured the system so it works as my router and firewall, and it works quite well like that. But I never update packages. All I do is just move on to the next release.

Coming from the Linux world, I'm used to applying updates a few times a week; but how do I do that on *BSD? – Or is this not part of the *BSD philosophy?

Best Answer

OpenBSD is binary-centric. You can update the binaries (if any updates/changes are available) by executing pkg_add:

pkg_add -Uu

The OpenBSD team recommends using the packages over building from ports - The OpenBSD packages and ports system

FreeBSD can be updated via packages or ports.

Related Question