服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - Linux mount: Structure needs cleaning 错误解决方法

Linux mount: Structure needs cleaning 错误解决方法

2019-10-31 21:12CSDNJason_asia Linux

这篇文章主要介绍了Linux mount: Structure needs cleaning 错误解决方法,需要的朋友可以参考下

今天在使用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

延伸 · 阅读

精彩推荐