Is there any way to mount APFS partition read only or read/write on Linux or Windows?
5 Answers
Actually there is a free tool for Linux.
- for Linux (free)
- for Windows (not free)
These are my everyday use tools on my hackintosh.
3Install libfsapfs-utils (tested in Ubuntu 20.04)
1. Mount APFS partition 3 of /dev/sdd in a directory /mnt
fsapfsmount -f 1 /dev/sdd3 /mntwhere, -f file_system_index (mounts a specific file system)
2. Unmount APFS partition mounted in the directory /mnt
fusermount -u /mnt 3 I didn't test it myself, but it seems that a commercial solution is available (currently read-only):
The page doesn't say much, not even the price, though.
Paragon now has driver with full Read/Write support:
(it's not free though)
1There is a dedicated linux-apfs driver, which even has experimental write support:
If you are on Arch Linux or a derivative, you can install it from the AUR.
3