summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorLars Wirzenius <liw@iki.fi>2007-02-28 15:21:59 +0200
committerLars Wirzenius <liw@iki.fi>2007-02-28 15:21:59 +0200
commit889ba4ea8f45a22c718650b23361ac0d73284144 (patch)
treef86eed1e2a39365e5ae84c3e04e43a18d1f19c21 /README
parent37b1a6372056d61dc6799c73a2057b1f4166fd42 (diff)
downloadobnam-889ba4ea8f45a22c718650b23361ac0d73284144.tar.gz
Wrote something in the README in preparation for writing obnamfs.
Diffstat (limited to 'README')
-rw-r--r--README32
1 files changed, 32 insertions, 0 deletions
diff --git a/README b/README
index eeecb0d0..861e77aa 100644
--- a/README
+++ b/README
@@ -32,3 +32,35 @@ the author:
license like the rest of Python.
Since Obnam supports Python 2.4, uuid.py is included here.
+
+
+ObnamFS: Backups as a read-only FUSE filesystem
+-----------------------------------------------
+
+In order to make browsing and restoring as pleasant as possible, backups
+made with Obnam are available as a read-only filesystem, implemented
+using FUSE.
+
+To use this, make sure your system supports FUSE. Then run the
+following command:
+
+ obnamfs MOUNTPOINT
+
+where MOUNTPOINT is the location (directory) where you want your backups
+to be visible. Obnamfs uses the same configuration file as plain obnam.
+Those obnam command line options that are relevant for obnamfs work in
+the identical way.
+
+The virtual filesystem created this way is accessible only by the user
+who ran obnamfs. That is, the root of the virtual filesystem is owned by
+the user who ran obnamfs, and has 0700 permissions. All backed up files
+have the same numeric owner and group, and the same permissions, as are
+stored for them in the backup.
+
+To unmount the filesystem, run the following command:
+
+ fusermount -u MOUNTPOINT
+
+where MOUNTPOINT is the same location you gave to obnamfs.
+
+For more information about FUSE, see http://fuse.sourceforge.net/