From 397003453e014d42b34efe1fb7713645e050d97d Mon Sep 17 00:00:00 2001 From: Aditya Garg <85610623+AdityaGarg8@users.noreply.github.com> Date: Wed, 1 Jan 2025 00:00:15 +0530 Subject: [PATCH] Add instructions on verifying the iso checksums on macOS (#87) * Add instructions on verifying the iso checksums on macOS * Make it consistent with PR 86 Co-authored-by: Eric Naim --- src/content/docs/cachyos_basic/download.mdx | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/content/docs/cachyos_basic/download.mdx b/src/content/docs/cachyos_basic/download.mdx index 2aa09c0..6d1c974 100644 --- a/src/content/docs/cachyos_basic/download.mdx +++ b/src/content/docs/cachyos_basic/download.mdx @@ -65,6 +65,29 @@ Always take an extra step and verify the ISOs integrity to avoid any undesired i + + + + +1. Download the [file](https://mirror.cachyos.org/ISO/desktop/241221/cachyos-desktop-linux-241221.iso.sha256) containing the SHA256 hash. +2. Open a terminal and navigate to the directory containing the `.sha256` file and execute the following commands: + ```sh + # Example: + cd Downloads/ + cat cachyos-desktop-linux-241221.iso.sha256 + # 6b6562602705da3228d9862d7016a00ca6fa482482b87fd15656f9b2793f4ef6 + ``` +3. Compare the output from **Step 2** and execute the following command to check what's the current hash in the ISO file. + ```sh + # Example: + shasum -a 256 cachyos-desktop-linux-241221.iso + ``` +4. If the hashes from **Step 2** and **Step 3** match, you can proceed with the CachyOS installation. + + + + + ## Verify ISO Image Authenticity (Linux)