OpenBSD 7.0

From MK Wiki EN
Revision as of 09:25, 13 May 2023 by MkWikiEnSysOp (talk | contribs) (Created page with "== General information == OpenBSD 7.0 was released on [https://distrowatch.com/?newsid=11367 2021-10-14]. It contains 11329 packages with a total size of 53.005.315.563 bytes (50549 MiB). === How to determine package stats === wget http://ftp.eu.openbsd.org/pub/OpenBSD/7.0/packages/amd64/ -Oopenbsd70packages.html # Number of packages grep "<a href" openbsd70packages.html | wc -l # Total size of all packages grep "<a href" openbsd70packages.html | awk -F' ' '{prin...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General information

OpenBSD 7.0 was released on 2021-10-14. It contains 11329 packages with a total size of 53.005.315.563 bytes (50549 MiB).

How to determine package stats

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