Hi folks
After i have to hard power of my server because the system was not shutting down, i made a file system check and scrub.
File system is a BTRFS RAID1 with three SSDs. I got 3 identical superblock errors, one for each drive!
Journalctl:
Code
...
Sep 06 18:51:06 pr-srv-01 kernel: BTRFS info (device sdc): scrub: started on devid 2
Sep 06 18:51:06 pr-srv-01 kernel: BTRFS error (device sdc): super block at physical 274877906944 devid 2 has bad generation 3088 exp
ect 3089
Sep 06 18:51:06 pr-srv-01 kernel: BTRFS info (device sdc): scrub: started on devid 1
Sep 06 18:51:06 pr-srv-01 kernel: BTRFS error (device sdc): super block at physical 274877906944 devid 1 has bad generation 3088 exp
ect 3089
Sep 06 18:51:06 pr-srv-01 kernel: BTRFS info (device sdc): scrub: started on devid 3
Sep 06 18:51:06 pr-srv-01 kernel: BTRFS error (device sdc): super block at physical 274877906944 devid 3 has bad generation 3088 exp
ect 3089
...
Display More
Code
root@pr-srv-01:~# btrfs check --force --readonly /dev/disk/by-uuid/a8a06053-0cc4-491d-adf2-01bb8a02fb44
Opening filesystem to check...
WARNING: filesystem mounted, continuing because of --force
Checking filesystem on /dev/disk/by-uuid/a8a06053-0cc4-491d-adf2-01bb8a02fb44
UUID: a8a06053-0cc4-491d-adf2-01bb8a02fb44
[1/7] checking root items
[2/7] checking extents
[3/7] checking free space tree
[4/7] checking fs roots
[5/7] checking only csums items (without verifying data)
[6/7] checking root refs
[7/7] checking quota groups skipped (not enabled on this FS)
found 729810604032 bytes used, no error found
total csum bytes: 711802164
total tree bytes: 925188096
total fs tree bytes: 47824896
total extent tree bytes: 9469952
btree space waste bytes: 155823101
file data blocks allocated: 728885415936
referenced 728885415936
root@pr-srv-01:~#
Display More
Code
root@pr-srv-01:~# btrfs scrub start -B -d /srv/dev-disk-by-uuid-a8a06053-0cc4-491d-adf2-01bb8a02fb44
Scrub device /dev/sdc (id 1) done
Scrub started: Sat Sep 6 18:51:06 2025
Status: finished
Duration: 0:37:16
Total to scrub: 454.06GiB
Rate: 207.37MiB/s
Error summary: super=1
Corrected: 0
Uncorrectable: 0
Unverified: 0
Scrub device /dev/sdb (id 2) done
Scrub started: Sat Sep 6 18:51:06 2025
Status: finished
Duration: 0:33:49
Total to scrub: 455.03GiB
Rate: 228.70MiB/s
Error summary: super=1
Corrected: 0
Uncorrectable: 0
Unverified: 0
Scrub device /dev/sdd (id 3) done
Scrub started: Sat Sep 6 18:51:06 2025
Status: finished
Duration: 0:33:59
Total to scrub: 455.03GiB
Rate: 227.70MiB/s
Error summary: super=1
Corrected: 0
Uncorrectable: 0
Unverified: 0
root@pr-srv-01:~#
Display More
Code
root@pr-srv-01:~# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 59G 0 disk
├─sda1 8:1 0 58G 0 part /
├─sda2 8:2 0 1K 0 part
└─sda5 8:5 0 975M 0 part [SWAP]
sdb 8:16 0 3,6T 0 disk
sdc 8:32 0 3,6T 0 disk /export/Dream
/srv/dev-disk-by-uuid-a8a06053-0cc4-491d-adf2-01bb8a02fb44
sdd 8:48 0 3,6T 0 disk
root@pr-srv-01:~#
Display More
Does anyone is knowing a way to fix this problem! Filessystem is mounted! SMB, NFS, MiniDLNA, SSH services are running!
Thank´s and best regards
prtigger