Forum
Write access to HFS+ drive - Printable Version

+- Forum (http://forum.xbian.org)
+-- Forum: Hardware (/forum-7.html)
+--- Forum: Peripherals (/forum-27.html)
+--- Thread: Write access to HFS+ drive (/thread-2278.html)



Write access to HFS+ drive - modbox14 - 8th May, 2014 12:54 PM

Hi,
I read somewhere that HFS+ doesn't play nicely with xbian without granting access to the xbian user manually to write.
I disabled journaling on the drive. Then I tried this code to make everything writable from xbian.
Code:
sudo sed -i 's/FS_MOUNTOPTIONS="dmask=0777,fmask=0777"/FS_MOUNTOPTIONS="uid=xbian,gid=xbian,dmask=0777,fmask=0777"/g' /etc/usbmount/usbmount.conf
and it didn't appear to make a difference.

For reference, here is a little more detail on the context:
I am running sabnzbd and sick beard (the xbian-package versions).

user name for the pi is: xbian
external hard drive name is Elements_2.5tb
Default Base Folder: /home/xbian
incomplete folder for sabnzbd is: Downloads/incomplete/
Completed download folder: media/Elements_2.5tb/

In Sabnzbd I get PostProcessing was aborted (Cannot create final folder /media/Elements_2.5tb/TV Shows/whatevershowidownloaded720p)

Thoughts?


RE: Write access to HFS+ drive - mk01 - 25th Jun, 2014 04:08 AM

@modbox14

HFSPLUS is considered as DANGEROUS with writing and that's why normally it is mounted RO.

t is needed to accept the risk by specifically forcing it to be RW.

Code:
mount -t hfsplus -o force,rw .........

(25th Jun, 2014 04:08 AM)mk01 Wrote:  @modbox14

HFSPLUS is considered as DANGEROUS with writing and that's why normally it is mounted RO.

t is needed to accept the risk by specifically forcing it to be RW.

Code:
mount -t hfsplus -o force,rw .........

also double check that hfsplus kernel module is loaded
Code:
modprobe hfsplus