I'm running Xubuntu 24.04 on a 512GB SSD (ext4) and am not experiencing issues, except I checked dmesg the other day and it returned errors like these:
Code:
[ 2545.428343] sd 7:0:0:0: [sdd] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK cmd_age=0s
[ 2545.428366] sd 7:0:0:0: [sdd] tag#0 Sense Key : Medium Error [current]
[ 2545.428376] sd 7:0:0:0: [sdd] tag#0 Add. Sense: Unrecovered read error
[ 2545.428387] sd 7:0:0:0: [sdd] tag#0 CDB: Read(10) 28 00 00 00 00 04 00 00 01 00 00 00
[ 2545.428393] critical medium error, dev sdd, sector 4 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[ 2545.428453] FAT-fs (sdd): FAT read failed (blocknr 4)
[ 2546.228250] sd 7:0:0:0: [sdd] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK cmd_age=0s
[ 2546.228274] sd 7:0:0:0: [sdd] tag#0 Sense Key : Medium Error [current]
[ 2546.228284] sd 7:0:0:0: [sdd] tag#0 Add. Sense: Unrecovered read error
[ 2546.228294] sd 7:0:0:0: [sdd] tag#0 CDB: Read(10) 28 00 00 00 00 04 00 00 04 00 00 00
[ 2546.228301] critical medium error, dev sdd, sector 4 op 0x0:(READ) flags 0x80700 phys_seg 4 prio class 0
[ 2547.028177] sd 7:0:0:0: [sdd] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK cmd_age=0s
[ 2547.028201] sd 7:0:0:0: [sdd] tag#0 Sense Key : Medium Error [current]
[ 2547.028211] sd 7:0:0:0: [sdd] tag#0 Add. Sense: Unrecovered read error
[ 2547.028259] sd 7:0:0:0: [sdd] tag#0 CDB: Read(10) 28 00 00 00 00 04 00 00 01 00 00 00
[ 2547.028268] critical medium error, dev sdd, sector 4 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
[ 2547.028332] FAT-fs (sdd): FAT read failed (blocknr 4)
So this morning I fired the system up with a live disk, and ran sudo fsck -y /dev/sda, and it returned this sort of thing:
Code:
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck-ext2: Bad magic number in super-block while trying to open /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>
of
e2fsck -b 32768 <device>
Found a gpt partition table in /dev/sda
Running e2fsck -b 8193 /dev/sda or the same for 32768 returns:
Code:
e2fsck: Bad magic number in super-block while trying to open /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>
of
e2fsck -b 32768 <device>
Found a gpt partition table in /dev/sda
Bookmarks