aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Ziaee <ziaee@FreeBSD.org>2026-06-29 04:02:00 +0000
committerAlexander Ziaee <ziaee@FreeBSD.org>2026-06-29 04:02:00 +0000
commit605cabd0d4ac4f37b8ecc5bae45714b229248e76 (patch)
tree2cd07abcbe1309a4583962661f0591e5668eb7db
parent087c3670de668baae97dbc69cbd650d574e8dc05 (diff)
handbook/bsdinstall: Fix example block attributes
This allows the example block to always show the latest release. Fixes: a2f2b294050c ("handbook/bsdinstall: Use latest release macro")
-rw-r--r--documentation/content/en/books/handbook/bsdinstall/_index.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/content/en/books/handbook/bsdinstall/_index.adoc b/documentation/content/en/books/handbook/bsdinstall/_index.adoc
index d7de1c4f82..de90517cde 100644
--- a/documentation/content/en/books/handbook/bsdinstall/_index.adoc
+++ b/documentation/content/en/books/handbook/bsdinstall/_index.adoc
@@ -190,7 +190,7 @@ Other operating systems have similar programs.
Verifying the _checksum_ in FreeBSD can be done automatically using man:sha256sum[1] (and man:sha512sum[1]) by executing:
-[source,shell]
+[source,shell,subs=attributes]
....
% sha256sum -c CHECKSUM.SHA256-FreeBSD-{rel-latest}-RELEASE-amd64 --ignore-missing
FreeBSD-{rel-latest}-RELEASE-amd64-dvd1.iso: OK
@@ -226,7 +226,7 @@ Be *very careful* that the correct device is used as this command will destroy t
. The command-line utility is available on BSD, Linux(R), and Mac OS(R) systems. To burn the image using `dd`, insert the USB stick and determine its device name. Then, specify the name of the downloaded installation file and the device name for the USB stick. This example burns the amd64 installation image to the first USB device on an existing FreeBSD system.
+
-[source,shell]
+[source,shell,subs=attributes]
....
# dd if=FreeBSD-{rel-latest}-RELEASE-amd64-memstick.img of=/dev/da0 bs=1M conv=sync
....