如果对任何人都有用,我会遇到类似的问题(在受影响的文件上进行rsync / rsnapshot备份)。我在这里发布了我的问题/解决方案:
https://ubuntuforums.org/showthread.php?t=2348768&p=13627299#post13627299
摘要:
arch Linux x86_64系统上的rsnapshot(rsync)备份错误;当我尝试删除该文件时,一个损坏的,嵌套严重的文件引发了该错误:
sudo rm -fR hourly.5/
rm: cannot remove 'hourly.5/snapshot_root/mnt/Vancouver/temp/temp - old/temp - 09 (Dec 07, 2014 - Sep 02, 2015)/a_OLD-gmail/victoria.a.stuart@gmail.com/[Gmail]/LINUX/rsync, rsnapshot; Other backups/19.bak': Structure needs cleaning
这是问题所在:
cd mnt/Vancouver/temp/temp\ -\ old/temp\ -\ 09\ \(Dec\ 07\,\ 2014\ -\ Sep\ 02\,\ 2015\)/a_OLD-gmail/victoria.a.stuart@gmail.com/\[Gmail\]/LINUX/rsync\,\ rsnapshot\;\ Other\ backups/
ls -l
ls: cannot access '19.bak': Structure needs cleaning
total 0
-????????? ? ? ? ? ? 19.bak ## << THAT IS THE PROBLEM!!
[另请参见:https : //www.reddit.com/r/linuxquestions/comments/4b47r2/has_anyone_ever_gotten_structure_needs_cleaning/ ]
我的备份驱动器是/ dev / sda1。
sudo umount /dev/sda1
sudo fsck.ext4 /dev/sda1 ## << accepted suggested fixes
重新启动:一切似乎都很好。进入备份驱动器,删除该有问题的文件:
/mnt/Backups/rsnapshot_backups/hourly.5/snapshot_root/mnt/Vancouver/temp/temp - old/temp - 09 (Dec 07, 2014 - Sep 02, 2015)/a_OLD-gmail/victoria.a.stuart@gmail.com/[Gmail]/LINUX/rsync, rsnapshot; Other backups/19.bak
QED ?!
[更新:是的;可行:我的备份再次正常运行!:-)]