I'm trying to make a new installation of Artix Dinit using Ventoy on a ThinkPad Yoga L390. I was able to access the boot menu but during boot it's failing with the attached error.
https://ibb.co/6MKTYkP
Not sure why this is the case, I have disabled secure boot.
Is the same happening with other iso? Can you check the hash sums?
@Worm_Jim I tried the 2024 Artix Dinit and NixOS ISOs, both of which works as expected. This must be a problem with the new ISO then?
$ sha256sum artix-base-dinit-20250407-x86_64.iso
76d21e5828d877c51dafdccb641029555824f5b98710df76cd30e713a3cf53e7 artix-base-dinit-20250407-x86_64.iso
You need to compare the hash sums of the ISO image you downloaded and the copy copied to the device with Ventoy. They should match. If this does not help, you should write it via dd and check.
As in like this?
$ dd if=/mnt/artix-base-dinit-20250407-x86_64.iso bs=1 count=123456789 | sha256sum
123456789+0 records in
123456789+0 records out
a2f7e38538141893e4c2c7eaef626965b5901807df41e0bb627edf811e8cf113 -
123456789 bytes (123 MB, 118 MiB) copied, 50.3983 s, 2.4 MB/s
$ dd if=artix-base-dinit-20250407-x86_64.iso bs=1 count=123456789 | sha256sum
123456789+0 records in
123456789+0 records out
a2f7e38538141893e4c2c7eaef626965b5901807df41e0bb627edf811e8cf113 -
123456789 bytes (123 MB, 118 MiB) copied, 51.749 s, 2.4 MB/s
The iso in
/mnt
is the one having problems. The hashes seem to match.