OpenBSD 6.7: Difference between revisions
Jump to navigation
Jump to search
(+General information) |
(+How to determine package stats) |
||
Line 2: | Line 2: | ||
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). | 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 == |
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.