I have an HFS+ filesystem image recovered from a failing Mac harddrive and can loopback mount it on my Linux machine. How can I access the resource forks for the files in this filesystem from the Linux machine?

(I do not have a Mac with the capacity to store an image this large.)

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Add /rsrc to the end of the file name to access the resource fork. I have no I idea where that's documented if anywhere. Edit: Just to clarify I was referring to command-line usage for example cp somefile/rsrc destfile will copy the resouce fork of somefile a file called destfile. All command-line functions work this way. I haven't tested it with anything graphical.

link|improve this answer
That worked; thanks. Files without a resource fork on the hfs+ filesystem would give a 'permission denied' error when I tried to access /rsrc, which let me determine which files had resource forks and which didn't. – retracile Mar 18 at 11:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.