A CLI tool used to check the integrity of Oreon ISOs
Clone the repository and build it with Cargo:
git clone https://github.com/oreonproject/Oreon-verify
cd Oreon-verify
cargo build --release
oreon-verify -f <ISO_FILE> -H <HASH>
Flag | Description |
---|---|
-f , --file |
Required – Path to the ISO file to verify |
-H , --hash |
Required – Expected hash to compare against |
oreon-verify -f oreon.iso -H 0d4a1183c7c19d1ef9e7d5e9cc70f5dc
Output (valid ISO):
ISO is fine!
Output (corrupted ISO):
ISO is corrupted!
- Missing arguments will trigger a panic with a message.
- File or hash issues will print an error and exit.