최근 미디어 센터로 사용하던 Raspberry PI 시스템에 정전 문제가 발생했습니다. 추적해서 새 전원 공급 장치로 교체하기 전에는 오래된 디스크(문제일 수도 있음)에 약간의 손상을 입히는 것처럼 보였고, 물리적으로 멀쩡했던 오래되지 않은 디스크도 있었습니다. 형식 지정에 btrfs를 사용하고 지우면 "super"에 오류가 발생합니다.
# btrfs scrub status -d /dev/sda1
scrub status for **************************
scrub device /dev/sda1 (id 1) history
scrub resumed at Mon Feb 1 22:55:03 2021 and finished after 01:44:48
total bytes scrubbed: 160.77GiB with 2 errors
error details: super=2
corrected errors: 0, uncorrectable errors: 0, unverified errors: 0
btrfs 검사에서는 아무런 문제도 발견되지 않았습니다.
# btrfs check --progress /dev/sda1
Opening filesystem to check...
Checking filesystem on /dev/sda1
UUID: **************************
[1/7] checking root items (0:00:00 elapsed, 36660 items checked)
[2/7] checking extents (0:00:26 elapsed, 16745 items checked)
[3/7] checking free space cache (0:00:06 elapsed, 240 items checked)
[4/7] checking fs roots (0:00:32 elapsed, 684 items checked)
[5/7] checking csums (without verifying data) (0:00:29 elapsed, 35432 items checked)
[6/7] checking root refs (0:00:00 elapsed, 3 items checked)
[7/7] checking quota groups skipped (not enabled on this FS)
found 252808790016 bytes used, no error found
total csum bytes: 246555120
total tree bytes: 274219008
total fs tree bytes: 11255808
total extent tree bytes: 3080192
btree space waste bytes: 11029386
file data blocks allocated: 252534571008
referenced 252534571008
이제 전체 백업과 미디어 센터에 동기화하기 위한 자동화된 스크립트가 있으므로 디스크를 다시 포맷하고 채우는 것이 덜 번거롭기 때문에 이것이 몇 가지 실험을 하기에 좋은 환경이 될 것이라고 생각했습니다. 그래서: 문제를 해결할 수 있는 방법이 있나요?
감사해요.