OpenBSD 7.1

From MK Wiki EN
Revision as of 16:30, 13 May 2023 by MkWikiEnSysOp (talk | contribs) (Corrected stats)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General information

OpenBSD 7.1 was released on 2022-04-21. It contains 11305 packages with a total size of 55.082.195.966 bytes (52530 MiB).

How to determine package stats

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