Thank you for the replies. Following these suggestions the root of the issue could be identified:
Code:
$ lsblk -e 7 -o name,size,type,fstype,mountpoint
NAME SIZE TYPE FSTYPE MOUNTPOINT
sda 465,8G disk
└─sda1 465,8G part crypto_LUKS
└─luks-1841d2d1-4ce7-46e4-805e-0be262199e7d 465,7G crypt ext4 /media/lads/NOAB
nvme0n1 953,9G disk
├─nvme0n1p1 856,1G part ext4 /home
├─nvme0n1p2 300M part vfat /boot/efi
└─nvme0n1p3 97,5G part ext4 /
$ df -hT
Filesystem Type Size Used Avail Use% Mounted on
tmpfs tmpfs 1,6G 2,7M 1,6G 1% /run
/dev/nvme0n1p3 ext4 96G 12G 80G 13% /
tmpfs tmpfs 7,7G 181M 7,5G 3% /dev/shm
tmpfs tmpfs 5,0M 12K 5,0M 1% /run/lock
efivarfs efivarfs 192K 128K 60K 69% /sys/firmware/efi/efivars
tmpfs tmpfs 7,7G 52M 7,6G 1% /tmp
/dev/nvme0n1p2 vfat 300M 7,8M 292M 3% /boot/efi
/dev/nvme0n1p1 ext4 842G 36G 764G 5% /home
tmpfs tmpfs 1,6G 312K 1,6G 1% /run/user/1000
/dev/dm-0 ext4 458G 273G 162G 63% /media/lads/NOAB
$dmesg
[...]
[24234.292510] sda: sda1
[24234.292923] sd 0:0:0:0: [sda] Attached SCSI disk
[24244.998079] EXT4-fs warning (device dm-0): ext4_clear_journal_err:6291: Filesystem error recorded from previous mount: IO failure
[24245.004901] EXT4-fs warning (device dm-0): ext4_clear_journal_err:6299: Marked fs in need of filesystem check.
[24245.011502] EXT4-fs (dm-0): warning: mounting fs with errors, running e2fsck is recommended
[24245.020974] EXT4-fs (dm-0): recovery complete
[24245.021001] EXT4-fs (dm-0): mounted filesystem 72da4a80-d831-464e-a139-b75eb7a118da r/w with ordered data mode. Quota mode: none.
[24248.020372] EXT4-fs error (device dm-0): ext4_validate_block_bitmap:423: comm ext4lazyinit: bg 126: bad block bitmap checksum
[24248.020401] Aborting journal on device dm-0-8.
[24248.031299] EXT4-fs (dm-0): Remounting filesystem read-only
[24266.405485] ------------[ cut here ]------------
And here is the diagnosis from e2fsck:
Code:
$ sudo e2fsck -pf /dev/sda
e2fsck: Bad magic number in super-block while trying to open /dev/sda
/dev/sda:
The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem. If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 8193 <device>
or
e2fsck -b 32768 <device>
Found a dos partition table in /dev/sda
I am wary of moving forwards with a repair since this volume is perfectly readable/writable on Ubuntu 22.02. Any advice? If I try a different superblock is there any risk of data loss?
Thank you.