美文网首页IT 森林
mount_Structure needs cleaning

mount_Structure needs cleaning

作者: FilesFan | 来源:发表于2018-12-08 15:30 被阅读130次

问题

今天在使用fio进行IO测试的时候,文件系统/home分区遇到了mount: Structure needs cleaning 报错。
大致情况:
  /home分区是xfs文件系统;
  执行fio进行多进程测试;
  测试完毕之后,执行du -hs /home/*,部分文件的数据提示 “mount: Structure needs cleaning”报错;

解决方法

可以使用xfs_repair来修复,但是要注意 xfs_repair修复的分区中的文件都会丢失,即使是du能正常显示的文件也会丢失。

处理步骤:
  umount /home
  xfs_repair /home
  mount /home

相关文章

网友评论

    本文标题:mount_Structure needs cleaning

    本文链接:https://www.haomeiwen.com/subject/htpqhqtx.html