[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-6353":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":23,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":16,"starSnapshotCount":16,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},6353,"sshfs","libfuse\u002Fsshfs","libfuse","A network filesystem client to connect to SSH servers","",null,"C",7499,541,84,43,0,1,8,90,5,79.2,"GNU General Public License v2.0",false,"master",true,[],"2026-06-12 04:00:28","\n# SSHFS\n\n\n## About\n\nSSHFS allows you to mount a remote filesystem using SFTP. Most SSH\nservers support and enable this SFTP access by default, so SSHFS is\nvery simple to use - there's nothing to do on the server-side.\n\n\n## Development Status\n\n\nSSHFS is shipped by all major Linux distributions and has been in\nproduction use across a wide range of systems for many years. However,\nat present SSHFS does not have any active, regular contributors, and\nthere are a number of known issues (see the [bugtracker](https:\u002F\u002Fgithub.com\u002Flibfuse\u002Fsshfs\u002Fissues)).  \nThe current maintainer continues to apply pull requests and makes regular\nreleases, but unfortunately has no capacity to do any development\nbeyond addressing high-impact issues. When reporting bugs, please\nunderstand that unless you are including a pull request or are\nreporting a critical issue, you will probably not get a response.\n\n\n## How to use\n\n\nOnce sshfs is installed (see next section) running it is very simple:\n\n```\nsshfs [user@]hostname:[directory] mountpoint\n```\n\nIt is recommended to run SSHFS as regular user (not as root).  For\nthis to work the mountpoint must be owned by the user.  If username is\nomitted SSHFS will use the local username. If the directory is\nomitted, SSHFS will mount the (remote) home directory.  If you need to\nenter a password sshfs will ask for it (actually it just runs ssh\nwhich asks for the password if needed).\n\nAlso many ssh options can be specified (see the manual pages for\n*sftp(1)* and *ssh_config(5)*), including the remote port number\n(`-oport=PORT`)\n\nTo unmount the filesystem:\n\n```\nfusermount -u mountpoint\n```\n\nOn BSD and macOS, to unmount the filesystem:\n\n```\numount mountpoint\n```\n\n### Bypassing SSH\n\n#### Using directport\n\nUsing direct connections to sftp-server to bypass SSH for performance is also possible. To do this, start a network service using sftp-server (part of OpenSSH) on a server, then connect directly using `-o directport=PORT` option.\n\nOn server (listen on port 1234 using socat):\n\n`socat tcp-listen:1234,reuseaddr,fork  exec:\u002Fusr\u002Flib\u002Fopenssh\u002Fsftp-server`\n\nOn client:\n\n`sshfs -o directport=1234 127.0.0.1:\u002Ftmp \u002Ftmp\u002Fmnt`\n\nNote that this is insecure as connection will happen without encryption. Only use this on localhost or trusted networks. This option is sometimes used by other projects to mount folders inside VMs.\n\nIPv6 is also possible:\n\n`socat tcp6-listen:1234,reuseaddr,fork exec:\u002Fusr\u002Flib\u002Fopenssh\u002Fsftp-server`\n\n`sshfs -o directport=1234 [::1]:\u002Ftmp \u002Ftmp\u002Fmnt`\n\n#### Using vsock\n\nSimilarly to above, Linux [vsock](https:\u002F\u002Fman7.org\u002Flinux\u002Fman-pages\u002Fman7\u002Fvsock.7.html) can be used to connect directly to sockets within VMs using `-o vsock=CID:PORT`.\n\n```\n# on the host\nsocat VSOCK-LISTEN:12345 EXEC:\"\u002Fusr\u002Flib\u002Fopenssh\u002Fsftp-server\",nofork\n# on the clientside\nsshfs -o vsock=2:12345 unused_host: .\u002Ftmp\n```\n\n## Installation\n\n\nFirst, download the latest SSHFS release from\nhttps:\u002F\u002Fgithub.com\u002Flibfuse\u002Fsshfs\u002Freleases. You also need [libfuse](http:\u002F\u002Fgithub.com\u002Flibfuse\u002Flibfuse) 3.1.0 or newer (or a\nsimilar library that provides a libfuse3 compatible interface for your operating\nsystem). Finally, you need the [Glib](https:\u002F\u002Fdeveloper.gnome.org\u002Fglib\u002Fstable\u002F) library with development headers (which should be\navailable from your operating system's package manager).\n\nTo build and install, we recommend to use [Meson](http:\u002F\u002Fmesonbuild.com\u002F) (version 0.38 or\nnewer) and [Ninja](https:\u002F\u002Fninja-build.org\u002F).  After extracting the sshfs tarball, create a\n(temporary) build directory and run Meson:\n\n```\n$ mkdir build; cd build\n$ meson ..\n```\n\nNormally, the default build options will work fine. If you\nnevertheless want to adjust them, you can do so with the *mesonconf*\ncommand:\n\n```\n$ mesonconf                  # list options\n$ mesonconf -D strip=true    # set an option\n```\n\nTo build, test and install SSHFS, you then use Ninja (running the\ntests requires the [py.test](http:\u002F\u002Fwww.pytest.org\u002F) Python module):\n\n```\n$ ninja\n$ python3 -m pytest test\u002F    # optional, but recommended\n$ sudo ninja install\n```\n\n## Getting Help\n\n\nIf you need help, please ask on the \u003Cfuse-sshfs@lists.sourceforge.net>\nmailing list (subscribe at\nhttps:\u002F\u002Flists.sourceforge.net\u002Flists\u002Flistinfo\u002Ffuse-sshfs).\n\nPlease report any bugs on the GitHub issue tracker at\nhttps:\u002F\u002Fgithub.com\u002Flibfuse\u002Fsshfs\u002Fissues.\n\n## Packaging Status\n\n\n\u003Ca href=\"https:\u002F\u002Frepology.org\u002Fproject\u002Ffusefs:sshfs\u002Fversions\">\n    \u003Cimg src=\"https:\u002F\u002Frepology.org\u002Fbadge\u002Fvertical-allrepos\u002Ffusefs:sshfs.svg\" alt=\"Packaging status\" >\n\u003C\u002Fa>\n","SSHFS 是一个网络文件系统客户端，用于通过 SFTP 连接到 SSH 服务器。其核心功能是让用户能够轻松地将远程文件系统挂载到本地，支持大多数默认启用 SFTP 访问的 SSH 服务器，无需额外配置。该项目采用 C 语言编写，并在 GNU General Public License v2.0 下开源。SSHFS 广泛应用于需要远程访问文件系统的场景，如开发人员远程协作、跨机器数据共享等。此外，它还提供了一些高级选项，比如通过直接端口或 vsock 连接以提高性能，但这些方式仅建议在安全可控的环境中使用。",2,"2026-06-11 03:06:39","top_language"]