Hi,
I need to migrate about 8Tb of data from a Mac Fibre Channel RAID to by LVM Ext3 Linux Fibre Channel RAID. For speed I planned to connect both RAID's to my CentOS Server and copy the data directly.
The Mac volume is formatted as Mac OS Extended (Journaled) it seems that CentOS 5.4 supports reading HFS volumes but not HFSPlus volumes. Is there a way of getting this volume to mount so I can copy of the data? I see Fedora has HFSPlus support
Thanks
Keith
On 22 Mar 2010, at 09:53, Keith Beeby k.beeby@albion.co.uk wrote:
Is there a way of getting this volume to mount so I can copy of the data? I see Fedora has HFSPlus support
I'd be tempted to connect the HFS+ RAID back to the Mac and copy the data using rsync. Sure it won't be as quick as direct attached, but maybe quicker than waiting for a working solution.
Or maybe try a Fedora live CD.
Ben
Keith Beeby wrote:
Hi,
I need to migrate about 8Tb of data from a Mac Fibre Channel RAID to by LVM Ext3 Linux Fibre Channel RAID. For speed I planned to connect both RAID's to my CentOS Server and copy the data directly.
The Mac volume is formatted as Mac OS Extended (Journaled) it seems that CentOS 5.4 supports reading HFS volumes but not HFSPlus volumes. Is there a way of getting this volume to mount so I can copy of the data? I see Fedora has HFSPlus support
The CentOS 5 kernel does have the hfsplus.ko module ...
What happens when you type:
modprobe hfsplus
James Pearson
Hi,
Nothing is returned when I type
modprobe hfsplus
Regards,
Keith On 22 Mar 2010, at 10:38, James Pearson wrote:
Keith Beeby wrote:
Hi,
I need to migrate about 8Tb of data from a Mac Fibre Channel RAID to by LVM Ext3 Linux Fibre Channel RAID. For speed I planned to connect both RAID's to my CentOS Server and copy the data directly.
The Mac volume is formatted as Mac OS Extended (Journaled) it seems that CentOS 5.4 supports reading HFS volumes but not HFSPlus volumes. Is there a way of getting this volume to mount so I can copy of the data? I see Fedora has HFSPlus support
The CentOS 5 kernel does have the hfsplus.ko module ...
What happens when you type:
modprobe hfsplus
James Pearson _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hi,
When I type lsmod | grep hfsplus
I get
hfsplus 110409 0
Thanks for the help
Keith
On 22 Mar 2010, at 11:11, James Pearson wrote:
Keith Beeby wrote:
Hi,
Nothing is returned when I type
modprobe hfsplus
That means it has probably loaded it OK - what does the following gives:
lsmod | grep hfsplus
James Pearson _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hi
I tired plugging in a USB drive that was formatted as Mac OS Extended (Journaled) and it mounted first time Thus it seems there is direct support for HFSPlus with CentOS 5.4 just no hfsplusutils
Keith
On 22 Mar 2010, at 11:21, Keith Beeby wrote:
Hi,
When I type lsmod | grep hfsplus
I get
hfsplus 110409 0
Thanks for the help
Keith
On 22 Mar 2010, at 11:11, James Pearson wrote:
Keith Beeby wrote:
Hi,
Nothing is returned when I type
modprobe hfsplus
That means it has probably loaded it OK - what does the following gives:
lsmod | grep hfsplus
James Pearson _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
From: Keith Beeby k.beeby@albion.co.uk
The Mac volume is formatted as Mac OS Extended (Journaled) it seems that CentOS 5.4 supports reading HFS volumes but not HFSPlus volumes. Is there a way of getting this volume to mount so I can copy of the data? I see Fedora has HFSPlus support
# locate hfsplus => /lib/modules/2.6.18-164.11.1.el5/kernel/fs/hfsplus/hfsplus.ko But the mount manpage only talks about hfs and the hfsplus in the kernel sources seems to be empty... I guess just try: modprobe hfsplus mount -t hfsplus ... (maybe -o ro to be safe?)
JD
On 3/22/10 9:55 AM, "John Doe" jdmls@yahoo.com wrote:
From: Keith Beeby k.beeby@albion.co.uk
The Mac volume is formatted as Mac OS Extended (Journaled) it seems that CentOS 5.4 supports reading HFS volumes but not HFSPlus volumes. Is there a way of getting this volume to mount so I can copy of the data? I see Fedora has HFSPlus support
# locate hfsplus => /lib/modules/2.6.18-164.11.1.el5/kernel/fs/hfsplus/hfsplus.ko But the mount manpage only talks about hfs and the hfsplus in the kernel sources seems to be empty... I guess just try: modprobe hfsplus mount -t hfsplus ... (maybe -o ro to be safe?)
JD
No need for the -o ro, as HFS+ Journaled volumes are ALWAYS mounted read-only unless you use the force option.