长期使用 Windows 的用户正在尝试 OSX。我的想法是通过 BootCamp 安装 Windows,并有一个共享分区来保存我的 Dropbox 文件夹(以避免 Dropbox 占用我 SSD 上的两倍空间)、音乐和其他一些媒体。
设置起来并不容易(这邮政在磁盘实用程序中添加共享分区时,我的 bootcamp 消失了,这帮了我不少忙,但最终我还是成功了。然而今天在 Windows 上设置 Dropbox 后(不确定是否巧合),共享分区消失了,在两个操作系统中都没有显示(我的意思是在 Finder/文件资源管理器中)。
共享分区为 250GB,格式化为 ExFAT。
这是我从 GDisk 获得的输出:
GPT fdisk (gdisk) version 1.0.1
Warning: Devices opened with shared lock will not have their
partition table automatically reloaded!
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): p
Disk /dev/disk0: 977105060 sectors, 465.9 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): E17AF55E-F8EF-4DE3-9767-F7CCC3C37CDC
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 977105026
Partitions will be aligned on 8-sector boundaries
Total free space is 262281 sectors (128.1 MiB)
Number Start (sector) End (sector) Size Code Name
1 40 409639 200.0 MiB EF00 EFI System Partition
2 409640 292336615 139.2 GiB AF05 Untitled
3 292336616 293606151 619.9 MiB AB00 Recovery HD
4 293606152 781438975 232.6 GiB 0700 Windows_NTFS_Untitl...
5 781701120 977104895 93.2 GiB 0700 BOOTCAMP
答案1
经过大量研究,我终于解决了这个问题。看起来 ExFAT 容易损坏,但你实际上可以在终端中修复它。事后看来,更好的解决方案似乎是将共享驱动器格式化为 NTFS 并使用Paragon NTFS在 OSX 中读取/写入共享。
解决方案
如果你在OSX下遇到与ExFAT类似的问题,解决方法如下:
通过运行命令在终端中找出分区标识符
diskutil list
运行以下命令修复磁盘(
disk0s4
根据步骤 1 中的分区名称替换)sudo fsck_exfat -d disk0s4
磁盘将被扫描并修复(系统将提示您是否要修复)。
资料来源:
在 Parallels 和 BootCamp 中都可以访问 MacOS 和 Windows 上的同一个 Dropbox 文件夹吗?