Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/guides/iso-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Our ISO testing program is an easy way to contribute back to the project. These

## Aurora (stable ISOs)

| Version | GPU | Download | Checksum |
| ------- | --------- | ------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
| Aurora | AMD/Intel | [📥 aurora-stable-webui-x86_64.iso](https://dl-test.getaurora.dev/aurora-stable-webui-x86_64.iso) | [🔐 Verify](https://dl-test.getaurora.dev/aurora-stable-webui-x86_64.iso-CHECKSUM) |
| Aurora | Nvidia | [📥 aurora-nvidia-open-stable-webui-x86_64.iso](https://dl-test.getaurora.dev/aurora-nvidia-open-stable-webui-x86_64.iso) | [🔐 Verify](https://dl-test.getaurora.dev/aurora-nvidia-open-stable-webui-x86_64.iso-CHECKSUM) |
| Version | GPU | Download | Checksum |
| ------- | --------- | ------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| Aurora | AMD/Intel | [📥 aurora-stable-x86_64.iso](https://dl-test.getaurora.dev/aurora-stable-x86_64.iso) | [🔐 Verify](https://dl-test.getaurora.dev/aurora-stable-x86_64.iso-CHECKSUM) |
| Aurora | Nvidia | [📥 aurora-nvidia-open-stable-x86_64.iso](https://dl-test.getaurora.dev/aurora-nvidia-open-stable-x86_64.iso) | [🔐 Verify](https://dl-test.getaurora.dev/aurora-nvidia-open-stable-x86_64.iso-CHECKSUM) |

## Verifying Downloads with Checksums

Expand All @@ -26,19 +26,19 @@ Our ISO testing program is an easy way to contribute back to the project. These
#### How to verify checksums using sha256sum

1. **Download both the ISO file and its corresponding CHECKSUM file**
- For example: `aurora-stable-webui-x86_64.iso` and `aurora-stable-webui-x86_64.iso-CHECKSUM`
- For example: `aurora-stable-x86_64.iso` and `aurora-stable-x86_64.iso-CHECKSUM`

2. **Verify the checksums match:**

```bash
sha256sum -c aurora-stable-webui-x86_64.iso-CHECKSUM
sha256sum -c aurora-stable-x86_64.iso-CHECKSUM
```

**Example:**

```bash

# Check that the checksums match
$ sha256sum -c aurora-stable-webui-x86_64.iso-CHECKSUM
aurora-stable-webui-x86_64.iso: OK
$ sha256sum -c aurora-stable-x86_64.iso-CHECKSUM
aurora-stable-x86_64.iso: OK
```