Runfs is a self-cleaning in-RAM filesystem where data shares fate with the process that creates it. Once the process exits, the files it created in runfs are automatically unlinked, as well as its directories and all of their descendents.
- Store daemon PID files while guaranteeing that they always disappear when the daemon stops, even if it crashes.
- Give cryptographic tools the use of the filesystem while guaranteeing that sensitive data becomes inaccessible once the tool exits.
- Give your favorite build system a place to store its subprocess' temporary files while ensuring that a failed or interrupted build always starts clean.
To build:
$ make
To install:
$ sudo make install
By default, runfs will be installed to /usr/local/bin
. You may set PREFIX
to control the installation directory, and DESTDIR
to set an alternate installation root.
To run:
$ ./runfs /path/to/mountpoint
It takes FUSE arguments like -f for "foreground", etc. See fuse(8).