René's URL Explorer Experiment


Title: Feature Request: libfuse3 support on macOS for FSKit backend · Issue #145 · cryptomator/jfuse · GitHub

Open Graph Title: Feature Request: libfuse3 support on macOS for FSKit backend · Issue #145 · cryptomator/jfuse

X Title: Feature Request: libfuse3 support on macOS for FSKit backend · Issue #145 · cryptomator/jfuse

Description: Summary The jfuse-mac module uses libfuse2, while jfuse-linux and jfuse-win use libfuse3. This creates a functionality gap on macOS where FSKit-based mounting is not available. Background macFUSE 5.1.0+ has been adding support for an FSK...

Open Graph Description: Summary The jfuse-mac module uses libfuse2, while jfuse-linux and jfuse-win use libfuse3. This creates a functionality gap on macOS where FSKit-based mounting is not available. Background macFUSE 5...

X Description: Summary The jfuse-mac module uses libfuse2, while jfuse-linux and jfuse-win use libfuse3. This creates a functionality gap on macOS where FSKit-based mounting is not available. Background macFUSE 5...

Opengraph URL: https://github.com/cryptomator/jfuse/issues/145

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Feature Request: libfuse3 support on macOS for FSKit backend","articleBody":"## Summary\n\nThe jfuse-mac module uses libfuse2, while jfuse-linux and jfuse-win use libfuse3. This creates a functionality gap on macOS where FSKit-based mounting is not available.\n\n## Background\n\nmacFUSE 5.1.0+ has been adding support for an FSKit backend that allows FUSE filesystems to work without kernel extensions. This matters because Apple has made loading kexts increasingly restrictive - users must boot into Recovery Mode to enable third-party kexts.\n\nThe FSKit backend is enabled via `-o backend=fskit`. Per the macFUSE 5.1.0 release notes, this option is only supported with libfuse3:\n\n\u003e \"When specifying the mount option `-o backend=fskit`, libfuse3 will use the FSKit backend to mount the file system.\"\n\nSince jfuse-mac uses libfuse2, the FSKit option is not available.\n\nNote: FSKit support in macFUSE may still be maturing (see https://github.com/macfuse/macfuse/issues/1070), and FSKit is not a free lunch - it has significant limitations regarding what information is available to the filesystem compared to the kext backend, so compatibility will be limited. Due to these limitations, it may be valuable to ensure failures happen early and clearly so users aren't surprised when filesystems don't work properly with FSKit. However, having libfuse3 support would at least allow users to try it when it's ready.\n\n## Current Behavior\n\n```\n$ # Using jfuse on macOS with libfuse2\nmount_macfuse: the file system is not available (1)\n\n$ # Attempting FSKit option\nfuse: invalid argument 'backend=fskit'  # libfuse2 doesn't recognize this option\n```\n\n## Requested Behavior\n\nUpdate jfuse-mac to use libfuse3 instead of libfuse2, matching the approach used on Linux and Windows. macFUSE ships libfuse3 at `/usr/local/lib/libfuse3.4.dylib`.\n\n## Technical Details\n\nThe jfuse-mac pom.xml currently references:\n```xml\n\u003cheaderFile\u003e${project.parent.basedir}/libfuse2/include/fuse.h\u003c/headerFile\u003e\n\u003ccPreprocessorMacro\u003eFUSE_USE_VERSION=29\u003c/cPreprocessorMacro\u003e\n```\n\nFor libfuse3 support, this would need to change to the fuse3 headers and appropriate version macros.\n\n## Questions\n\n1. Is there a technical reason jfuse-mac uses libfuse2 instead of libfuse3?\n2. Are there any known compatibility concerns with macFUSE's libfuse3 implementation?\n3. Given FSKit's limitations, should jfuse provide a way to detect when FSKit is being used and warn/fail early if the filesystem uses unsupported features?","author":{"url":"https://github.com/lvh","@type":"Person","name":"lvh"},"datePublished":"2026-01-10T16:10:08.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/145/jfuse/issues/145"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:cfc90242-7ba8-f625-06f0-8452bae27705
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBE70:205C7C:1B09D86:2716676:6A4BCC0F
html-safe-nonce1a8ec1ea21916837a95e6cd7249ab404c63e3ea6cdff078ea43709c6734aadee
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRTcwOjIwNUM3QzoxQjA5RDg2OjI3MTY2NzY6NkE0QkNDMEYiLCJ2aXNpdG9yX2lkIjoiNzU2MjI2NDc1OTQxMzQ5Mjc1MSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacb0991c70aa24a871acf71de48e24d2ffda222a2457177aca993a0d38fee2824b
hovercard-subject-tagissue:3799986551
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/cryptomator/jfuse/145/issue_layout
twitter:imagehttps://opengraph.githubassets.com/21cc103c1493ef5601f4592daa838951d773245ad6aa69569c8a581471779edd/cryptomator/jfuse/issues/145
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/21cc103c1493ef5601f4592daa838951d773245ad6aa69569c8a581471779edd/cryptomator/jfuse/issues/145
og:image:altSummary The jfuse-mac module uses libfuse2, while jfuse-linux and jfuse-win use libfuse3. This creates a functionality gap on macOS where FSKit-based mounting is not available. Background macFUSE 5...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamelvh
hostnamegithub.com
expected-hostnamegithub.com
None14aa00ce5bdb34d0eefb5facbffd7de9e144c688d8a93ef8df902d5f94b51dd7
turbo-cache-controlno-preview
go-importgithub.com/cryptomator/jfuse git https://github.com/cryptomator/jfuse.git
octolytics-dimension-user_id11850518
octolytics-dimension-user_logincryptomator
octolytics-dimension-repository_id226903166
octolytics-dimension-repository_nwocryptomator/jfuse
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id226903166
octolytics-dimension-repository_network_root_nwocryptomator/jfuse
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release58b8f89190447502561829f30862aa0a99d53367
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/cryptomator/jfuse/issues/145#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcryptomator%2Fjfuse%2Fissues%2F145
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcryptomator%2Fjfuse%2Fissues%2F145
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=cryptomator%2Fjfuse
Reloadhttps://github.com/cryptomator/jfuse/issues/145
Reloadhttps://github.com/cryptomator/jfuse/issues/145
Reloadhttps://github.com/cryptomator/jfuse/issues/145
Please reload this pagehttps://github.com/cryptomator/jfuse/issues/145
cryptomator https://github.com/cryptomator
jfusehttps://github.com/cryptomator/jfuse
Please reload this pagehttps://github.com/cryptomator/jfuse/issues/145
Notifications https://github.com/login?return_to=%2Fcryptomator%2Fjfuse
Fork 5 https://github.com/login?return_to=%2Fcryptomator%2Fjfuse
Star 60 https://github.com/login?return_to=%2Fcryptomator%2Fjfuse
Code https://github.com/cryptomator/jfuse
Issues 5 https://github.com/cryptomator/jfuse/issues
Pull requests 4 https://github.com/cryptomator/jfuse/pulls
Discussions https://github.com/cryptomator/jfuse/discussions
Actions https://github.com/cryptomator/jfuse/actions
Security and quality 0 https://github.com/cryptomator/jfuse/security
Insights https://github.com/cryptomator/jfuse/pulse
Code https://github.com/cryptomator/jfuse
Issues https://github.com/cryptomator/jfuse/issues
Pull requests https://github.com/cryptomator/jfuse/pulls
Discussions https://github.com/cryptomator/jfuse/discussions
Actions https://github.com/cryptomator/jfuse/actions
Security and quality https://github.com/cryptomator/jfuse/security
Insights https://github.com/cryptomator/jfuse/pulse
#158https://github.com/cryptomator/jfuse/pull/158
Feature Request: libfuse3 support on macOS for FSKit backendhttps://github.com/cryptomator/jfuse/issues/145#top
#158https://github.com/cryptomator/jfuse/pull/158
https://github.com/overheadhunter
https://github.com/lvh
lvhhttps://github.com/lvh
on Jan 10, 2026https://github.com/cryptomator/jfuse/issues/145#issue-3799986551
macfuse/macfuse#1070https://github.com/macfuse/macfuse/issues/1070
overheadhunterhttps://github.com/overheadhunter
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.