this post was submitted on 07 Mar 2024
28 points (96.7% liked)
Linux
48186 readers
1970 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I would say create an NTFS partition and use that. NTFS on Linux has been pretty reliable with the new in-kernel NTFS3 driver, especially since recent kernels. And on macOS, you can use the Tuxera NTFS driver, which is also pretty reliable (FWIW, I've been using this for many years now without any issues).
Now here are some alternative options, and why NOT to use them:
exFAT: While this should work out-of-the-box on both Linux and macOS, unfortunately it's not a reliable FS and not meant for usage on internal drives. exFAT lacks several data integrity features found on modern filesystems, such as journaling, data checksums, atomic writes etc. Basically you can't trust exFAT with your data.
APFS: There's an experimental driver for Linux, but it's considered quite experimental, so I wouldn't recommend it. Paragon also makes a paid APFS driver for Linux, but I don't have any experience with it. Personally, given how new APFS is, I wouldn't recommend using Paragon's driver. NTFS on the other hand has been around for decades, is far more widely used and battle-tested, and is well understood by third-party driver developers.
HFS+: Support on Linux is mediocre at best. In theory, it's supported, but filesystem checking is essentially nonexistent without a lot of manual work, and it has issues sometimes if the filesystem was not cleanly shut down. Performance is also not particularly great, and the driver is not widely used with means it's more likely to have undiscovered bugs.
Alternatively, use a Linux-native file system like ext4 or btrfs, and expose it to macOS via a bare-bones Linux guest VM using UTM or similar.
Kludgy, yes. But NTFS support is kind of shit on both Mac AND Linux.
Personally I use exFAT for such tasks, but I'm not storing anything important on those drives to begin with.
I've had success with an NTFS partition, but I've pretty much just used it like a buffer. If I want to move something from one OS to the other, in it goes, reboot, out it comes. Never lost anything that way. This is Ubuntu and MacOS on an ancient MacBook Air.
Paragon Software makes NTFS and EXT4 drivers for MacOS as well. They are referenced in the comment you are replying to. I’d personally go with whichever file system is easier to recover if something gets corrupted.
Thanks for all the good advice. I'll look into these solutions.