From 40aebcfaecb7ad2414794d4a3f41e0603c08a6e1 Mon Sep 17 00:00:00 2001
From: Andre Noll <maan@systemlinux.org>
Date: Mon, 12 May 2008 15:19:27 +0200
Subject: [PATCH] Add INSTALL -- installation and usage notes.

---
 INSTALL | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)
 create mode 100644 INSTALL

diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..bebfe05
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,61 @@
+Type
+
+	make
+
+in the dss source directory to build the dss executable. You
+likely need a recent version of gnu gengetopt,
+ftp://ftp.gnu.org/pub/gnu/gengetopt/, to compile dss.
+
+dss is known to compile on Linux, MacOS, Solaris, FreeBSD and
+NetBSD. However, it is run-tested on Linux only.
+
+Also make sure that rsync, http://rsync.samba.org/, is installed on
+your system. Version 2.6.1 or newer is required.
+
+In order to create snapshots of the existing directory
+
+	/tmp/foo
+
+in the directory
+
+	/tmp/bar,
+
+execute the commands
+
+	mkdir /tmp/bar
+	./dss --run --source-dir /tmp/foo --dest-dir /tmp/bar
+
+To print a list of all snapshots created so far, use
+
+	./dss --list --source-dir /tmp/foo --dest-dir /tmp/bar
+
+You might want to create the config file
+
+	~/.dssrc
+
+that contains the values for the source and the destination
+directories. In the above example, this file would contain the
+following lines:
+
+	source-dir "/tmp/foo"
+	dest-dir "/tmp/bar"
+
+Using a configuration file allows you to simply type
+
+	./dss --run
+
+to start snapshot creation and
+
+	./dss --list
+
+to list all avalable snapshots.
+
+Try
+
+	./dss -h
+
+for an overview of all supported command line options or
+
+	./dss --detailed-help
+
+for the full help text.
-- 
2.39.5