我已经升级了我的macOS从高塞拉到卡塔利纳,我认为,这导致我有以下错误。有办法纠正这个错误吗?
$ mkdir /Volumes/FOLDER
$ sudo /usr/local/bin/ntfs-3g /dev/disk2s1 /Volumes/FOLDER -olocal -oallow_other -o auto_xattr
$MFTMirr does not match $MFT (record 3).
Failed to mount '/dev/disk2s1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.请注意,我遵循了以下NTFS-3G指南。
发布于 2019-12-13 06:18:33
我跟踪了这个Ubuntu解决方案:
您所看到的错误表明文件系统不干净,需要由
chkdsk检查。NTFS文件系统有一些组件(在本例中分别为$MFT和$MFTMirr),它们说明了磁盘上的位置。这些文件不再相互匹配,这意味着可能存在某种类型的文件系统损坏。
在一台windows机器上,我使用了[chkdsk]
chdsk:检查卷的文件系统和文件系统元数据是否存在逻辑和物理错误。如果使用时没有参数,chkdsk只显示卷的状态,不修复任何错误。如果与/f、/r、/x或/b参数一起使用,它将修复卷上的错误。
首先,在我所做的一台Windows机器上:chkdsk /f,2TB外部硬盘大约需要2-3个小时。然后,在macOS上,我所面临的错误是固定的,微软为Mac提供的提供的软件也能够识别外部硬盘。
https://unix.stackexchange.com/questions/556272
复制相似问题