Artix Linux Forum

Artix Linux => Installation / Migration / Configuration => Topic started by: theeast on 13 September 2025, 11:02:14

Title: Fail to mount loop0
Post by: theeast on 13 September 2025, 11:02:14
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.

Title: Re: Fail to mount loop0
Post by: Worm_Jim on 13 September 2025, 17:38:09
Is the same happening with other iso? Can you check the hash sums?
Title: Re: Fail to mount loop0
Post by: theeast on 13 September 2025, 18:58:39
@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?

Code: [Select]
$ sha256sum artix-base-dinit-20250407-x86_64.iso 
76d21e5828d877c51dafdccb641029555824f5b98710df76cd30e713a3cf53e7  artix-base-dinit-20250407-x86_64.iso
Title: Re: Fail to mount loop0
Post by: Worm_Jim on 13 September 2025, 19:23:02
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.
Title: Re: Fail to mount loop0
Post by: theeast on 14 September 2025, 07:23:28
As in like this?

Code: [Select]
$ 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
Code: [Select]
/mnt
is the one having problems. The hashes seem to match.