PhoenixFS - 文件系统


BSD
Linux
C/C++

软件简介

PhoenixFS 是一个使用 FUSE 的文件系统实现,其灵感来自于
Git 版本控制。

依赖库:

  1. Zlib (>= 1.2)
  2. FUSE (>= 2.6)
  3. pkg-config (>= 0.25)
  4. Linux kernel (>= 2.6.15)

使用方法:

$ cd /tmp
$ mkdir gitdir mountp
$ phoneixfs mount gitdir mountp  
 $ echo "hello" >file1
 $ echo "goodbye" >file1
 $ echo "another hello" >file1
 $ cat file1
 another hello
 $ cat file1@1
 goodbye
 $ cat file1@2
 hello  
 $ fusermount -u mountp