我在 Debian 9 机器上使用 ZFS。这台机器已经工作了多年,直到今天都没有出现任何问题。
zfs 池安装在 RAID 系统的顶部,由硬件控制(因此只有一个驱动器作为 sda 暴露给 Linux)。您可以在下面看到“zpool status”的输出。
在继续之前,只需提一下我检查了 RAID 的一致性,一切都很好。
突然,对文件系统的所有访问都会引发冻结命令(甚至是 ls 命令),最终,我需要手动重新启动机器。
运行zpool status -v
时,输出为:
#/sbin/zpool status -v
pool: export
state: ONLINE
status: One or more devices has experienced an error resulting in data
corruption. Applications may be affected.
action: Restore the file in question if possible. Otherwise restore the
entire pool from backup.
see: http://zfsonlinux.org/msg/ZFS-8000-8A
scan: scrub repaired 0B in 53h4m with 0 errors on Tue Mar 15 05:28:38 2022
config:
NAME STATE READ WRITE CKSUM
export ONLINE 0 0 0
sda ONLINE 0 0 0
errors: Permanent errors have been detected in the following files:
export/home:<0x0>
export/home:<0x2b2ed23>
export/home:<0x2e1183b>
export/home:<0x2b2e849>
export/home:<0x1d0b5b1>
所以,主要问题是:这些文件的含义是什么?我该如何解决这个问题?
先感谢您!