How do I mount ext2/ext3 partitions in Mac OS X Snow Leopard?

36

13

Is there anything that will natively allow read/write on an ext2/3 partition within Snowie?

Just don't want to get a Linux box to mount, and then access via samba. Although I could perhaps through VMware Fusion … and then share it back…

Anyway to do this natively?

romant

Posted 2009-10-10T01:18:35.907

Reputation: 1 071

Answers

27

I haven't tried it, but MacFUSE OSXFuse plus fuse-ext2 is supposed to work.

wfaulk

Posted 2009-10-10T01:18:35.907

Reputation: 5 692

1Works well for me. One caveat: Remember to install the MacFUSE compatibility layer in OSXFuse, otherwise the shared library that fuse-ext2 uses will not be present => it won't work. – Per Lundberg – 2014-07-12T20:46:17.930

1MacFuse is no longer maintained – olafure – 2012-03-29T12:44:18.280

2

OSXFuse is a proper FUSE library, unlike MacFuse, and it is not only maintained, but it also provides a MacFUSE compatibility layer http://osxfuse.github.com/

– Hans-Christoph Steiner – 2013-01-15T03:37:28.610

fuse-ext2 link is broken. You can find it here. – Ninsuo – 2013-05-22T09:28:02.287

2Just for information: I've installed both OSXFuse and Fuse-Ext2 on Mavericks, and there's no need to use the Terminal to mount the Ext2 disk... it is automatically recognized and mounted – Barranka – 2013-11-08T18:05:32.140

6

I find the easiest and most reliable way to access linux ext3 partitions on my mac is to run Ubuntu in a vmware virtual machine on the mac. Once running you can connect Ubuntu to the ext3 drive via usb, and this way you can get complete reliability reading and writing to ext3 file systems. It's fast because the disk is directly connected to the mac, unlike on a network. And you can use it to copy files very quickly to/from the mac host by using shared directories or any number of other ways.

kwanghui

Posted 2009-10-10T01:18:35.907

Reputation:

Of course, this presumes that the partition is on an external USB drive though... – Per Lundberg – 2014-07-12T20:47:55.463

4

You could also install either e2fsprogs or ext2fuse with macports.


Don't think any mount commands are included with port's e2fsprogs. (Though there's fsck and the like.) But installing ext2fuse does do the trick!

nnyby

Posted 2009-10-10T01:18:35.907

Reputation: 959

3

fuse-ext2 works but is very slow (I get some 7 MB/s reading and 1 MB/s writing via USB 2.0).
If you have the choice, better use Apple's HFS+ on the external drive, which is much faster
(I get some 30 MB/s both reading and writing, both on Mac and Linux).

HFS+ is supported by Linux mostly out-of-the-box. To get write access even to a journaled partition on Ubuntu, install support via sudo apt-get install hfsprogs and when the drive is mounted (e.g., automatically), re-mount it writable using sudo mount -o remount,force,rw /mount/point

BTW, recently I suffered from a Mac OS crash apparently due to fuse-ext2
https://sourceforge.net/projects/fuse-ext2/forums/forum/787602/topic/6549364

dvo

Posted 2009-10-10T01:18:35.907

Reputation: 37

3I've run dual-boot with a shared HFS+ partition for years. While the HFS+ option was fast, it was also not very reliable. If you want read/write access, you have to turn of the HFS+ journaling, and HFS+ will fully self-distruct from time to time without the journaling. – Hans-Christoph Steiner – 2013-01-15T03:39:10.543