我最近在Macbook Pro的一个分区上安装了Ubuntu15.10。我试图访问Ubuntu分区上的OSX分区文件。我真的只想演奏音乐--很简单,我想。但现在我担心我的mac分区可能出了问题什么的。在Ubuntu15.10中,分区不作为只读设备自动挂载。我制作了目录/mnt/mac。
运行一个简单的sudo挂载/dev/sda2 2命令将提供给我:
mount: wrong fs type, bad option, bad superblock on /dev/sda2,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so.我安装了hfsplus和hfsutils并运行:
sudo mount -t hfsplus /dev/sda2 /mnt/mac
mount: wrong fs type, bad option, bad superblock on /dev/sda2,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so.
sudo mount -t hfsplus -o force,rw /dev/sda2 /mnt/mac
mount: wrong fs type, bad option, bad superblock on /dev/sda2,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so.
dmesg | tail
[ 11.374605] Bluetooth: RFCOMM TTY layer initialized
[ 11.374611] Bluetooth: RFCOMM socket layer initialized
[ 11.374615] Bluetooth: RFCOMM ver 1.11
[ 3070.215544] hfsplus: unable to find HFS+ superblock
[ 4912.220704] hfsplus: unable to find HFS+ superblock
[ 5007.642967] hfsplus: unable to find HFS+ superblock
[ 5469.323839] hfsplus: unable to find HFS+ superblock
[ 5560.640138] hfsplus: unable to find HFS+ superblock
[ 5708.026271] hfsplus: unable to find HFS+ superblock
[ 6132.163793] hfsplus: unable to find HFS+ superblock我不想将文件写入我的mac,所以不需要删除日志,such...or是否仍然需要将我的mac分区挂载为只读?
在与挂载问题相关的线程中,这些信息似乎是常见的:
sudo fdisk -l
...
Device Start End Sectors Size Type
/dev/sda1 40 409639 409600 200M EFI System
/dev/sda2 409640 733242175 732832536 349.5G Apple Core storage
/dev/sda3 733242176 734511935 1269760 620M Apple boot
/dev/sda4 734511936 976842879 242330944 115.6G Linux filesystem
sudo gdisk /dev/sda2
GPT fdisk (gdisk) version 1.0.0
Partition table scan:
MBR: not present
BSD: not present
APM: not present
GPT: not present任何帮助都是非常感谢的,我是Ubuntu的新手。
发布于 2016-01-30 23:28:18
核心存储是一个逻辑卷管理系统OSX。是Apple融合驱动器技术的基础,该技术将多个驱动器上的多个分区作为一个逻辑卷呈现出来。
libfvde包包含一个用于读取FileVault磁盘加密卷的库和应用程序,它包含以下工具: fvdeinfo (它显示FVDE卷的信息)和fvdemount (它融合了装入的FVDE卷)。
https://askubuntu.com/questions/727736
复制相似问题