惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
月光博客
月光博客
B
Blog RSS Feed
C
Check Point Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
GbyAI
GbyAI
H
Help Net Security
Y
Y Combinator Blog
I
InfoQ
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
美团技术团队
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
A
About on SuperTechFans
G
Google Developers Blog
爱范儿
爱范儿
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a free macOS app to mount SFTP, S3, and FTP as re...
Ayon Pal · 2026-05-05 · via DEV Community

Ayon Pal

TL;DR

macsh is a tiny menu-bar app that mounts SFTP, S3-compatible, and FTP/FTPS servers as native macOS volumes. Open them in Finder, drag files in, edit in place. No macFUSE, no kernel extension, no Recovery-mode reboot. Apache-2.0, free.

Heads up: macsh is built with Claude Code. I'm the designer, tester, and maintainer; the implementation is AI-written under my direction. Bugs and decisions are mine. Also, I am first time posting to Dev.to.


The problem

When accessing linux servers I want to treat a remote box like a folder on my Mac. Then I rediscover that the options on macOS are… not great:

  • macFUSE works, but it's a kernel extension. That means a Recovery-mode reboot to allow it, and Apple keeps making this path narrower with each release.
  • Cyberduck / Mountain Duck / Transmit are excellent — and paid or not easy to integrate in finder. Also I find Cyberduck causing heavy battery draining.
  • Finder → Connect to Server speaks SMB, AFP, WebDAV, NFS. No SFTP. No S3.

I just wanted Finder, but pointed at my server. So I shipped it. Rclone was working great - but had to run commands with remembering ip addresses etc. And a quick easy way to use it without remembering how to manage them.

How it works (the boring secret)

macsh is a thin SwiftUI wrapper around rclone's NFS-mount mode.

remote ──rclone──▶ local WebDav/NFS socket ──macOS──▶ /Volumes/my-server

Enter fullscreen mode Exit fullscreen mode

rclone serves the remote over a local NFS/WebDav socket. macOS already speaks NFS/WebDAV natively, so it mounts that socket as a regular volume. Result:

  • No kernel extension
  • No sudo
  • No "allow this system extension" dance
  • Works inside the Mac's normal sandboxing model

The app's job is the boring-but-important stuff: a nice form for adding remotes, Keychain for secrets, launch-at-login, mount/unmount lifecycle, in-app SSH key generation, update checks, menu-bar UX.

What's in it

  • SFTP / SSH — password, existing key file, or generate a new key in-app
  • S3-compatible — AWS, Cloudflare R2, Backblaze B2, Wasabi, MinIO, DigitalOcean Spaces, custom endpoints
  • FTP / FTPS — explicit and implicit TLS
  • Auto-mount at login
  • Live updates — server-side changes appear in seconds
  • Keychain-backed credentials — never plaintext on disk

Two builds, pick one

macsh macsh-lite
DMG size ~32 MB ~800 KB
rclone bundled uses your brew install rclone
Best for "just works" smaller download / power users

Honest caveats

  • Apple Silicon only. No Intel build. macOS 14+ (Sonoma). Tested on Tahoe.
  • Unsigned releases. I don't have an Apple Developer ID yet (and for now no plan for it 😅) , so after dragging the app to /Applications you'll need to run this once:
  xattr -dr com.apple.quarantine /Applications/macsh.app

Enter fullscreen mode Exit fullscreen mode

Otherwise Gatekeeper says "macsh is damaged" — it isn't, that's just Apple's wording for "I don't recognise this signature."

  • It's v0.1.x. Expect rough edges. File issues!

Try it

A star on the repo helps a lot. PRs and issues very welcome.