libertas wrote: Wed May 29, 2024 9:13 pm
Sure, here it is, now as sdd2:
Code: Select all
# dumpe2fs /dev/sdd2 | grep features
dumpe2fs 1.47.0 (5-Feb-2023)
Filesystem features: has_journal ext_attr resize_inode dir_index orphan_file filetype needs_recovery extent flex_bg metadata_csum_seed sparse_super large_file huge_file dir_nlink extra_isize metadata_csum orphan_present
Journal features: journal_incompat_revoke journal_checksum_v3
Thanks. I think the metadata_csum is the culprit. We have a few threads discussing about it here, during the alpha testing of 900:
viewtopic.php?t=9176
viewtopic.php?t=9166
viewtopic.php?t=9127
viewtopic.php?t=9105
But it was focused more on grub2, which failed to boot from ext4 exactly because of that.
We have since updated grub2, but I think we didn't touch refind at all.
It is possible the cause is the same.
Since you've already deleted the ext4 partition, it will be hard to test further, but otherwise what we could have done is:
a) turn off the metadata_csum:
tune2fs -O ^metadata_csum /dev/sdXXX
b) use updated ext2 driver you can find from http://distro.ibiblio.org/fatdog/packag ... arch-1.txz (download the file, open the tarball (you don't need to install), then grab ext4_x64.efi from usr/share/refind-0.14.2/refind/drivers_x64).
jamesbond wrote: Wed May 29, 2024 2:29 am
I got it totally wrong, then.
Though it as a stack, that the upper layer could be removed or added with no interference with what is below.
It cannot be removed because there are programs holding open file handles on the "/", which also means that it is holding open file handles on the re-writable layer. To remove the writable layer, you will need to stop all the programs that do that; and this turns out to be "almost all" programs.
EDIT:
1. It's "tune2fs -O" not "tune2fs -o" (must use capital O)
2. I've edited the explanation on using refind 0.14.2, as I have rebuild the package. Now you need to grab ext4_x64.efi, not ext2_x64.efi.
(If this sounds confusing, that's because it is. There are 2 kinds of ext2_x64.efi: one of them supports ext2 only, another one supports ext2/3/4. I've edited the refind-0.14.2 to include the ext2-only ext2_x64.efi, and re-include the standalone ext4_x64.efi as it seems to be the best).