我意识到这个问题本质上与这个问题相似,但是我希望在这个问题答案的评论中特别引起更多的注意。
我已经取出旧MacbookPro的硬盘驱动器,并尝试将其安装在Elementary OS盒中,在该盒中它会自动以只读方式安装。我想获得对该驱动器的读写权限。
运行后,按照上面链接的答案中给出的步骤进行操作
sudo mount -t hfsplus -o remount,force,rw /dev/sdc2 /media/myharddrive
我懂了
mount: warning: /media/myharddrive seems to be mounted read-only.
关于该问题的评论已指出了这一点,但没有引起足够的重视来奖励答案。为什么它仍然是只读的?那不是force
确保吗?
以下内容可能相关也可能不相关:
我还sudo fsck.hfsplus -f /dev/sdc2
跟踪答案中链接到的博客文章,并-f
在fsck
不想执行日记系统检查后添加了标志。一直运行到
** /dev/sdc2
** Checking HFS Plus volume.
** Checking Extents Overflow file.
** Checking Catalog file.
** Checking multi-linked files.
Orphaned indirect node iNode28863935
** Checking Catalog hierarchy.
** Checking Extended Attributes file.
** Checking volume bitmap.
** Checking volume information.
** Repairing volume.
** Rechecking volume.
** Checking HFS Plus volume.
** Checking Extents Overflow file.
** Checking Catalog file.
** Checking multi-linked files.
** Checking Catalog hierarchy.
** Checking Extended Attributes file.
** Checking volume bitmap.
** Checking volume information.
** The volume myharddrive was repaired successfully.
*** glibc detected *** fsck.hfsplus: munmap_chunk(): invalid pointer: 0x00000000022f9e30 ***
其次是回溯和内存映射。这个fsck
电话似乎对我的开车没有影响,无论好坏都没有。
在不启动OSX的情况下如何获得对驱动器的读写访问权限的任何指针将不胜感激。
编辑 MichaelKjörling的评论和答案解决了我访问数据的根本问题。但是,上面以粗体显示的问题尚未得到解决,因此我已对问题进行了编辑以强调此问题,从而使该问题对将来的用户开放。
sudo
因为root绕过了所有文件系统权限检查,所以应该完全运行。这不,当然,假设你的权限问题是有关文件系统级权限。
sudo
我得到了cp: omitting directory Documents/
。尝试将文档复制到我的本地硬盘时
chmod
从磁盘上获取数据?一种简单的解决方案似乎是对其他文件系统进行只读复制,然后根据需要在此处修复权限和所有权。