在 Ubuntu 中挂载 HFS+ 分区

在 Ubuntu 中挂载 HFS+ 分区

更新:我能够解决这个问题解决方案

我想从坏掉的 MacBook 读取 SSD 中的数据。我将它连接到我的 Ubuntu 16.04 PC,并使用第三个答案

sudo mount -t hfsplus -o force,rw /dev/sdx# /media/mntpoint

会产生以下错误:

wrong fs type, bad option, bad superblock on /dev/sdb2,
   missing codepage or helper program, or other error

   In some cases useful info is found in syslog - try
   dmesg | tail or so.

系统日志产生以下输出:

[  294.856309] hfsplus: invalid secondary volume header
[  294.856312] hfsplus: unable to find HFS+ superblock

parted显示文件格式为hfs+

Model: ATA APPLE SSD SM256E (scsi)
Disk /dev/sdb: 251GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:

Number  Start   End    Size   File system  Name                  Flags
 1      20,5kB  210MB  210MB  fat32        EFI system partition  boot, esp
 2      210MB   250GB  250GB  hfs+         Macintosh HD
 3      250GB   251GB  650MB  hfs+         Recovery HD

但是,fdisk显示为 Apple Core 存储:

Disk /dev/sdb: 233,8 GiB, 251000193024 bytes, 490234752 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 00003592-7281-0000-4046-000013340000

Device         Start       End   Sectors   Size Type
/dev/sdb1         40    409639    409600   200M EFI System
/dev/sdb2     409640 488965175 488555536   233G Apple Core storage
/dev/sdb3  488965176 490234711   1269536 619,9M Apple boot    

这是问题的原因吗?有什么想法可以让我安装 SSD 吗?

答案1

问题的原因在于 Apple Core Storage 是 HFS+ 分区的包装器。这会稍微改变实际分区的大小,因此您必须明确指定分区大小。

该过程在此主题

相关内容