rs9p
Tokio-based asynchronous filesystems library using 9P2000.L protocol, an extended variant of 9P from Plan 9.
unpfs
unpfs is the reference implementation of a file server which exports your filesystem.
You can build unpfs with the following commands below:
and run unpfs with the following command to export /exportdir:
# TCP
# or
# Unix domain socket:
# port number is a suffix to the unix domain socket
# 'unix!/tmp/unpfs-socket!n' creates `/tmp/unpfs-socket:n`
You are now ready to import/mount the remote filesystem.
Let's mount it at /mountdir:
# TCP
# Unix domain socket
| Mount option | Value |
|---|---|
| version | must be "9p2000.L" |
| trans | an alternative v9fs transport. "tcp" or "unix" |
| port | port to connect to on the remote server |
| uname | user name to attempt mount as on the remote server |
See v9fs documentation for more details.
License
rs9p is distributed under the BSD 3-Clause License. See LICENSE for details.