{"id":28794202,"url":"https://github.com/leodbfr/ntfs-macos-13-26","last_synced_at":"2025-10-03T20:08:39.196Z","repository":{"id":299424220,"uuid":"999538576","full_name":"LeoDBFR/NTFS-MacOS-13-26","owner":"LeoDBFR","description":"How to write on an NTFS drive on macOS 13 Sequoia and macOS 26 Tahoe, for Apple Silicon, without a kernel module.","archived":false,"fork":false,"pushed_at":"2025-06-16T13:04:59.000Z","size":10,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-16T14:28:35.583Z","etag":null,"topics":["fuse","fuse-filesystem","fuse-t","macos","ntfs","ntfs-3g","ntfs-macos","tutorial"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LeoDBFR.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-10T12:03:35.000Z","updated_at":"2025-06-16T13:05:02.000Z","dependencies_parsed_at":"2025-06-16T14:28:46.027Z","dependency_job_id":"61f80466-4dd8-487a-8b38-2ff3f4beafd6","html_url":"https://github.com/LeoDBFR/NTFS-MacOS-13-26","commit_stats":null,"previous_names":["leodbfr/ntfs-macos-13-26"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LeoDBFR/NTFS-MacOS-13-26","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeoDBFR%2FNTFS-MacOS-13-26","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeoDBFR%2FNTFS-MacOS-13-26/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeoDBFR%2FNTFS-MacOS-13-26/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeoDBFR%2FNTFS-MacOS-13-26/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LeoDBFR","download_url":"https://codeload.github.com/LeoDBFR/NTFS-MacOS-13-26/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeoDBFR%2FNTFS-MacOS-13-26/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262800885,"owners_count":23366459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fuse","fuse-filesystem","fuse-t","macos","ntfs","ntfs-3g","ntfs-macos","tutorial"],"created_at":"2025-06-18T02:05:06.203Z","updated_at":"2025-10-03T20:08:39.189Z","avatar_url":"https://github.com/LeoDBFR.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# NTFS-MacOS-13-26 UPDATED\nHow to write on an NTFS drive on macOS 15 Sequoia and macOS 26 Tahoe, for Apple Silicon, without a kernel module.\n\nIf you used my old tutorial, check the other file in the repo.\n\nThis is an update, a better way to do this, thanks to the people at MacOS-Fuse-T\n\nFirst we need to install some dependencies with homebrew, if you don't have it, check how to install it on https://brew.sh\n\nLet's run these command in the terminal, it will first add the repository needed to install fuse-t, then it will install the dependencies to build ntfs-3G, and it will install fuse-t, which is fuse without the need of a kernel driver. Their site's at https://www.fuse-t.org\n\nBefore fuse-t can be installed, the `/usr/local/include` folder that stores the headers for fuse-t needs to be created, otherwise their install script fails to link them to that location, and the `make install` fails.\n\n```bash\nsudo mkdir -p /usr/local/include\n```\n\n```bash\nbrew tap macos-fuse-t/homebrew-cask\n```\n\n```bash\nbrew install mounty fuse-t git automake autoconf libtool libgcrypt pkg-config gnutls\n```\n\nNow go into a directory of your choice and run this command, to clone ntfs-3g, the ntfs driver.\n\n```bash\ngit clone https://github.com/macos-fuse-t/ntfs-3g\n\ncd ntfs-3g\n```\n\nWe'll need to define some flags for it to install properly\n\n```bash\nexport CPPFLAGS=\"-I/usr/local/include/fuse\"\nexport LDFLAGS=\"-L/usr/local/lib -lfuse-t -Wl,-rpath,/usr/local/lib\"\n```\n\nNow run this command, preparing the configuration files\n\n```bash\n./autogen.sh\n```\n\nThen, we'll configure it automatically\n\n```bash\n./configure  \\\n        --prefix=/usr/local \\\n        --exec-prefix=/usr/local \\\n        --with-fuse=external \\\n        --sbindir=/usr/local/bin \\\n        --bindir=/usr/local/bin\n```\n\nNow we just need to build/compile it\n\n```bash\nmake -j\"$(sysctl -n hw.ncpu)\"\n```\n\nAnd lastly, we install it\n\n```bash\nsudo make install\n```\n\nNow ntfs-3g should be installed.\n\nNow :\n\nMount your drive using Mounty\n\nWe installed Mounty, launch it and agree.\n\nPlug your NTFS drive AFTER LAUNCHING MOUNTY and in the toolbar click on the Mounty icon, then you should see \"Re-mount\", click on it, then click on \"mount automatically\". \n\nNow go to finder and you should see a new volume with a computer icon called \"fuse-t\" containing a folder. This folder is your NTFS drive and you can write in it\n\nNow, when you'll plug your drive and Mounty is launched, it will automatically mount your drive.\n\nIf you have any questions or problem, comment, or open an issue on Github, or contact me by mail at leodomecbialek@outlook.fr\n\nThnaks :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleodbfr%2Fntfs-macos-13-26","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleodbfr%2Fntfs-macos-13-26","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleodbfr%2Fntfs-macos-13-26/lists"}