From 59c8aca312e7d8142dbd7c1c5bfe0faddc9121c2 Mon Sep 17 00:00:00 2001 From: gStart9 Date: Wed, 30 Apr 2025 16:23:53 -0600 Subject: [PATCH] Verify whatever StartOS version is present --- site/source/flashing-guides/os-x86.rst | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/site/source/flashing-guides/os-x86.rst b/site/source/flashing-guides/os-x86.rst index ac13304..86efe46 100644 --- a/site/source/flashing-guides/os-x86.rst +++ b/site/source/flashing-guides/os-x86.rst @@ -52,8 +52,9 @@ Select the client OS you are using to continue: (Optional, but recommended) Verify the checksum against the one listed on GitHub (SHA256): .. code-block:: - - sha256sum startos-0.3.4.2-efc56c0-20230525_x86_64.iso + + cd Downloads + sha256sum startos-*.iso .. group-tab:: Mac @@ -61,15 +62,16 @@ Select the client OS you are using to continue: .. code-block:: - openssl dgst -sha256 startos-0.3.5.1-39de098_x86_64.iso + cd Downloads + openssl dgst -sha256 startos-*.iso .. group-tab:: Windows (Optional, but recommended) Verify the checksum against the one listed on GitHub by opening Windows PowerShell, changing your directory to where you downloaded the .img.gz file, and running `Get-FileHash`: .. code-block:: - + cd Downloads - Get-FileHash startos-0.3.4.2-efc56c0-20230525_x86_64.iso + Get-FileHash startos-*.iso ____________