Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenhack/cow9p
Copy on write 9p filesystem (Abandoned)
https://github.com/zenhack/cow9p
Last synced: 16 days ago
JSON representation
Copy on write 9p filesystem (Abandoned)
- Host: GitHub
- URL: https://github.com/zenhack/cow9p
- Owner: zenhack
- License: mit
- Created: 2012-12-28T04:50:55.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-30T20:43:19.000Z (almost 12 years ago)
- Last Synced: 2024-10-22T07:02:58.413Z (2 months ago)
- Language: Go
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Cow9p - Copy on Write 9p filesystem
## Overview
Simple 9p server that adds a copy on write layer to an existing filesystem.
Invoke with:
cow9p -s src -d dst
This will start a 9p server (by default listening on tcp port 5640). Any
non-disctructive file operations will try to use the filesystem dst, and will
use src as a fallback if the necessary files do not exist on dst. For
destructive operations (e.g. write) dst will again be used, first, but if the
files are not found, the will be copied to dst from src, rather than operating
on src directly.## Status
Work in progress. Idea is well defined, but it doesn't work yet. The
interfaces are not considered stable either.Use at your own risk.
## License
MIT license. see COPYING.