OpenBSD 6.7

From MK Wiki EN
Revision as of 17:36, 11 May 2023 by MkWikiEnSysOp (talk | contribs) (+How to determine package stats)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General information

OpenBSD 6.7 was released on 2020-05-19. It contains 11272 packages with a total size of 49.784.723.338 bytes (47.478 MiB).

How to determine package stats

wget http://ftp.eu.openbsd.org/pub/OpenBSD/6.7/packages/amd64/ -Oopenbsd67packages.html
# Number of packages
grep "<a href" openbsd67packages.html | wc -l
# Total size of all packages
grep "<a href" openbsd67packages.html | awk -F' ' '{print $NF}' | awk '{sum+=$1}END{print sum}'

Don't reorder libraries at boot time

rcctl disable library_aslr

Credits

Use different package source

Edit file /etc/installurl

Problems can occur when using https, pkg_add might come up with the error "TLS handshake failure: certificate verification failed: certificate has expired". Solution: Use http instead of https. Possible solution would be to manually copy /etc/ssl/cert.pem from a newer system or find the package that contains that file.