<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Ayon Pal</title>
    <description>The latest articles on Forem by Ayon Pal (@ayonpal).</description>
    <link>https://forem.com/ayonpal</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F500048%2Fdc988af0-0a84-465c-aea1-fdd0d5d5307c.png</url>
      <title>Forem: Ayon Pal</title>
      <link>https://forem.com/ayonpal</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ayonpal"/>
    <language>en</language>
    <item>
      <title>I built a free macOS app to mount SFTP, S3, and FTP as real Finder volumes — no macFUSE</title>
      <dc:creator>Ayon Pal</dc:creator>
      <pubDate>Mon, 04 May 2026 17:14:04 +0000</pubDate>
      <link>https://forem.com/ayonpal/i-built-a-free-macos-app-to-mount-sftp-s3-and-ftp-as-real-finder-volumes-no-macfuse-lcn</link>
      <guid>https://forem.com/ayonpal/i-built-a-free-macos-app-to-mount-sftp-s3-and-ftp-as-real-finder-volumes-no-macfuse-lcn</guid>
      <description>&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/AyonPal/macsh" rel="noopener noreferrer"&gt;&lt;strong&gt;macsh&lt;/strong&gt;&lt;/a&gt; is a tiny menu-bar app that mounts &lt;strong&gt;SFTP, S3-compatible, and FTP/FTPS&lt;/strong&gt; 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.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Heads up:&lt;/strong&gt; 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.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;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:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macFUSE&lt;/strong&gt; 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.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cyberduck / Mountain Duck / Transmit&lt;/strong&gt; are excellent — and paid or not easy to integrate in finder. Also I find Cyberduck causing heavy battery draining.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Finder → Connect to Server&lt;/strong&gt; speaks SMB, AFP, WebDAV, NFS. No SFTP. No S3.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I just wanted &lt;em&gt;Finder, but pointed at my server&lt;/em&gt;. 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.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works (the boring secret)
&lt;/h2&gt;

&lt;p&gt;macsh is a thin SwiftUI wrapper around &lt;a href="https://rclone.org" rel="noopener noreferrer"&gt;&lt;code&gt;rclone&lt;/code&gt;&lt;/a&gt;'s NFS-mount mode.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;remote ──rclone──▶ local WebDav/NFS socket ──macOS──▶ /Volumes/my-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;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:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No kernel extension&lt;/li&gt;
&lt;li&gt;No &lt;code&gt;sudo&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;No "allow this system extension" dance&lt;/li&gt;
&lt;li&gt;Works inside the Mac's normal sandboxing model&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's in it
&lt;/h2&gt;

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

&lt;h2&gt;
  
  
  Two builds, pick one
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;code&gt;macsh&lt;/code&gt;&lt;/th&gt;
&lt;th&gt;&lt;code&gt;macsh-lite&lt;/code&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;DMG size&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;~32 MB&lt;/td&gt;
&lt;td&gt;~800 KB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;rclone&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;bundled&lt;/td&gt;
&lt;td&gt;uses your &lt;code&gt;brew install rclone&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Best for&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;"just works"&lt;/td&gt;
&lt;td&gt;smaller download / power users&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Honest caveats
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Apple Silicon only.&lt;/strong&gt; No Intel build. macOS 14+ (Sonoma). Tested on Tahoe.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unsigned releases.&lt;/strong&gt; I don't have an Apple Developer ID yet (and for now no plan for it 😅) , so after dragging the app to &lt;code&gt;/Applications&lt;/code&gt; you'll need to run this once:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  xattr &lt;span class="nt"&gt;-dr&lt;/span&gt; com.apple.quarantine /Applications/macsh.app
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Otherwise Gatekeeper says &lt;em&gt;"macsh is damaged"&lt;/em&gt; — it isn't, that's just Apple's wording for "I don't recognise this signature."&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;It's v0.1.x.&lt;/strong&gt; Expect rough edges. File issues!&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/AyonPal/macsh" rel="noopener noreferrer"&gt;https://github.com/AyonPal/macsh&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Releases (DMG):&lt;/strong&gt; &lt;a href="https://github.com/AyonPal/macsh/releases" rel="noopener noreferrer"&gt;https://github.com/AyonPal/macsh/releases&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;License:&lt;/strong&gt; Apache-2.0&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A star on the repo helps a lot. PRs and issues very welcome.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>swift</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
