Skip to content

Commit

Permalink
Add instructions on verifying the iso checksums on macOS (#87)
Browse files Browse the repository at this point in the history
* Add instructions on verifying the iso checksums on macOS

* Make it consistent with PR 86

Co-authored-by: Eric Naim <[email protected]>
  • Loading branch information
AdityaGarg8 and 1Naim authored Dec 31, 2024
1 parent eea4983 commit 3970034
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/content/docs/cachyos_basic/download.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,29 @@ Always take an extra step and verify the ISOs integrity to avoid any undesired i

</TabItem>

<TabItem label='macOS'>

<Steps>

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.

</Steps>

</TabItem>

</Tabs>

## Verify ISO Image Authenticity (Linux)
Expand Down

0 comments on commit 3970034

Please sign in to comment.