无法将文件从 NTFS 复制到 macOS

无法将文件从 NTFS 复制到 macOS

所以,最近,我的电脑遇到了一个问题,我决定重置它,但在此之前,我需要备份到硬盘上。

但是,我能找到的唯一具有可用空间的硬盘是 NTFS 硬盘,上面有一些数据。

众所周知,macOS 只能读取 NTFS 硬盘,因此如果我想使用时间机器进行备份,我需要先删除该数据并将其更改为 APFS/HFS+/exFAT。我不想丢失我付费的 1.* GB 大小的音频下载,因此我将 NTFS 硬盘上的文件复制到我的桌面。

然而,另一个问题随之而来。

在复制一个名为的文件时The Very Hungry Caterpillar.mp3,苹果说: 噢不……

嗯...,我想,我之前遇到过类似的错误flv,我通过进入命令行并将其复制到我的桌面来修复它。这应该可以再次正常工作。

或者说我是这么认为的。

$ cp /Volumes/New\ Volume/Top\ 50绘本的pdf及mp3音频/38\ The\ Very\ Hungry\ Caterpillar/The\ Very\ Hungry\ Caterpillar.mp3 /Users/Aaron/Desktop/Top\ 50绘本的pdf及mp3音频/38\ The\ Very\ Hungry\ Caterpillar 
cp: /Volumes/New Volume/Top 50绘本的pdf及mp3音频/38 The Very Hungry Caterpillar/The Very Hungry Caterpillar.mp3: Input/output error

复制操作在 30.* MB 的文件的 22 MB 处停止。

我又想了想。也许我使用 NTFS-3G 来挂载它。那又怎么样?

真讨厌。

$ sudo /usr/local/bin/ntfs-3g /dev/disk2s1 /Volumes/NTFS -olocal -oallow_other
$ cd /Volumes/NTFS/Top\ 50绘本的pdf及mp3音频 
$ cd 38\ The\ Very\ Hungry\ Caterpillar/
$ cp The\ Very\ Hungry\ Caterpillar.mp3 /Users/Aaron/Desktop/Top\ 50绘本的pdf及mp3音频/38\ The\ Very\ Hungry\ Caterpillar 
cp: The Very Hungry Caterpillar.mp3: Device not configured
cp: The Very Hungry Caterpillar.mp3: could not copy extended attributes to /Users/Aaron/Desktop/Top 50绘本的pdf及mp3音频/38 The Very Hungry Caterpillar/The Very Hungry Caterpillar.mp3: Device not configured

噢,取景器也冻结了。

现在,问题是:

  1. 最重要的是,如何将文件从 NTFS 驱动器复制到我的桌面?
  2. 为什么 cp 在 macOS 默认挂载后复制时会返回 I/O 错误?
  3. OSXFUSE NTFS-3G 卷仍然存在。为什么 cp 会返回“设备未配置”?

相关内容