Plug a Linux-formatted drive into a Mac and Finder offers to initialize it — macOS has no ext4 support at all, not even read-only. If the disk holds a server backup, a Raspberry Pi root partition or a retro console's game library, that's a problem. These are your real options in 2026, from DIY to one-click.
Apple ships drivers for APFS, HFS+, FAT32 and exFAT, plus read-only NTFS. Linux filesystems were never included, and since macOS Catalina third-party kernel extensions (kexts) require booting into Recovery Mode and lowering your Mac's security policy — which is why the classic answer, macFUSE + ext4fuse, has become painful on Apple Silicon.
FUSE-T is a kext-less FUSE
implementation that works over a local NFS loopback, and fuse2fs is the
official userspace mount tool from e2fsprogs — the same project that maintains ext4 itself.
Together they give you full read/write without touching your Mac's security. The catch:
Homebrew's e2fsprogs bottle doesn't include fuse2fs, so you must build it from source
against the FUSE-T headers (or use a tool that bundles it pre-built), then mount from
the terminal as root:
sudo fuse2fs /dev/disk4s2 /tmp/mnt -o rw
It works well — this is exactly the stack Omnimount automates, with a signed build, a menu bar UI and a privileged helper so you never type a password per mount.
The traditional route. It requires enabling reduced security from Recovery Mode on
Apple Silicon, and ext4fuse is read-only and largely unmaintained. Only
worth it if you already run macFUSE for something else.
UTM or Lima with the disk passed through. Free and reliable, but heavy: you boot an entire OS to copy files, USB passthrough is fiddly, and nothing integrates with Finder.
If the drive lives in a working Linux machine, share it with Samba/SFTP and skip local mounting entirely. Useless for loose disks and SD cards, though.
e2fsck before mounting read-write again.Skip the terminal. Omnimount does everything on this page from the menu bar: mount, write, format, check and clone ext4 and NTFS drives — no kernel extensions, no Recovery Mode, no password prompts.
Get Omnimount — €9.99 or build it free (GPL)