Grub 可以识别硬盘,但 Ubuntu 却不能

Grub 可以识别硬盘,但 Ubuntu 却不能

我有一个问题。我有 2 个 Sata 硬盘,我可以启动 Ubuntu,但它无法看到我的其他硬盘。当我启动 Grub 时节目Mac OS(其他硬盘)。

有什么问题?

谢谢。

答案1

为什么 Ubuntu 无法“看到”您的驱动器?您在文件系统中看不到它,或者您无法使用 sudo fdisk -l 找到它?

在我看来,这听起来像是需要安装驱动器。

sudo fdisk -l

查看驱动器的调用方式,即要挂载的分区的 /dev/sda1。

sudo mkdir /mnt/sda1
sudo mount /dev/sda1 /mnt/sda1

如果 fdisk 看不到它,那么一定是其他地方出了问题。(这似乎不太可能,因为如上所述,Ubuntu 应该能够读取 HFS 文件系统)

答案2

据我所知,Ubuntu 支持 OSX 文件系统 HFS+。尝试禁用日志功能;

来源

By default, Mac OS X formats volumes in journaled HFS+ volumes.
Journaling is a feature that improves data reliability, and unfortunately it
makes HFS drives read-only in Linux. To disable journaling, just boot into 
OS X and fire up Disk Utility. Click on your HFS partition, hold the Option
key, and click File in the menu bar. A new option to Disable Journaling will 
come up in the menu. Click that, and reboot into Linux. You should have read
and write access to your HFS partition—however, the permissions on your Mac
user's home folder will prevent you from reading or writing those files.

查看完整文章来解决权限问题。

相关内容