To mount an external firewire HFS+ formatted Mac drive in Linux -

First, connect the drive.

Then, see what the computer named it

%%prettify 
{{{
dmesg | tail
}}}
/%

You will see something like 

%%prettify 
{{{
sd 9:0:0:0: [sdb] Attached SCSI disk
}}}
/%

Then, make a mount point (any directory, but customarily in /media)

%%prettify 
{{{
sudo mkdir /media/macdrive
}}}
/%

Then, mount the drive to that folder (assuming HFS+)

%%prettify 
{{{
sudo mount -t hfsplus /dev/sdb /media/macdrive/
}}}
/%

----
[Linux.Shell | CategoryComputing.Linux.Shell] - [Mac.Shell | CategoryComputing.Mac.Shell]