Skip to main content
Topic: Fail to mount loop0 (Read 1035 times) previous topic - next topic
0 Members and 3 Guests are viewing this topic.

Fail to mount loop0

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.


Re: Fail to mount loop0

Reply #1
Is the same happening with other iso? Can you check the hash sums?

Re: Fail to mount loop0

Reply #2
@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

Re: Fail to mount loop0

Reply #3
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.

 

Re: Fail to mount loop0

Reply #4
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.