OpenBSD 6.7: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Don't reorder libraries at boot time == rcctl disable library_aslr [https://gist.github.com/kokokodak/4bf0d76616635b46b2682a6371dd8b58 Credits] Category:OpenBSD Category:BSD") |
(+How to determine package stats) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== General information == | |||
OpenBSD 6.7 was released on [https://distrowatch.com/?newsid=10921 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 == | == Don't reorder libraries at boot time == | ||
Line 4: | Line 16: | ||
[https://gist.github.com/kokokodak/4bf0d76616635b46b2682a6371dd8b58 Credits] | [https://gist.github.com/kokokodak/4bf0d76616635b46b2682a6371dd8b58 Credits] | ||
== Use different package source == | |||
Edit file <code>/etc/installurl</code> | |||
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 <code>/etc/ssl/cert.pem</code> from a newer system or find the package that contains that file. | |||
[[Category:OpenBSD]] | [[Category:OpenBSD]] | ||
[[Category:BSD]] | [[Category:BSD]] |
Latest revision as of 17:36, 11 May 2023
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
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.