在群辉NAS上写hfsplus
之前买了一个LaCie硬盘, 挂载到群辉NAS上之后发现是只读的状态.
如果需要改为可读写的状态, 需要先禁用 hfsplus 的 journaling, 然后通过命令行在NAS上mount
步骤如下:
-
先把硬盘接到Mac系统上.
-
执行下面的命令, 第二个命令的报错貌似可以忽略
> diskutil unmount /dev/disk3s1 > diskutil disableJournal force /dev/disk3s1 An error occurred journaling the file system: The underlying task reported failure on exit (-69860)
-
把硬盘挂载到NAS上
-
ssh远程连到NAS上的root账号, 执行下面的命令:
> umount /dev/sdq1 > mount -t hfsplus /dev/sdq1 /volumeUSB1/usbshare1-1
参考文档:
- Write to an HFS+ (Mac formatted) USB drive from a Synology NAS
- How can I disable journaling in El Capitan?
Last modified on 2015-12-02