使用 rsync 复制 Windows 分区的文件时出现 readlink_stat(...) 输入/输出错误 (5)

使用 rsync 复制 Windows 分区的文件时出现 readlink_stat(...) 输入/输出错误 (5)

我想将 Windows 10 系统分区(NTFS)的所有文件复制到另一个分区(NTFS)。

我在 Ubuntu 下使用rsync如下:

sudo rsync -axHAWXS --numeric-ids /media/windows /mnt/windows-backup

问题是无法读取几千个文件。

rsync:readlink_stat(“/media/windows/Program Files(x86)/Reference Assemblies/Microsoft/Framework/v3.0/de/PresentationFramework.resources.dll”)失败:输入/输出错误(5)
rsync:readlink_stat(“/media/windows/Program Files(x86)/Reference Assemblies/Microsoft/Framework/v3.0/de/ReachFramework.resources.dll”)失败:输入/输出错误(5)...

使用以下命令列出包含这些文件的目录内容

sudo ls -l "/media/windows/Program Files (x86)/Reference Assemblies/Microsoft/Framework/v3.0/de/"

我得到以下输出:

ls: 无法访问“/media/windows/Program Files (x86)/Reference Assemblies/Microsoft/Framework/v3.0/de/PresentationFramework.resources.dll”: 输入/输出错误
ls: 无法访问“/media/windows/Program Files (x86)/Reference Assemblies/Microsoft/Framework/v3.0/de/ReachFramework.resources.dll”: 输入/输出错误
...
-????????? ? ? ? ? ? PresentationFramework.resources.dll
-????????? ? ? ? ? ? ReachFramework.resources.dll
...

我在 Windows 10 下列出了其中一些文件,没有任何问题(文件资源管理器和 shell)。

我检查了文件系统,没有损坏。Windows 系统运行正常。

有什么问题?我该如何复制这些文件?

相关内容