2007-08-16 17:59:54 +00:00
|
|
|
ccollect(1)
|
|
|
|
===========
|
|
|
|
Nico Schottelius <nico-ccollect--@--schottelius.org>
|
2006-05-12 15:42:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
ccollect - (pseudo) incremental backup with different exclude lists using hardlinks and rsync
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2009-10-12 06:04:22 +00:00
|
|
|
'ccollect.sh' [args] <interval name> <sources to backup>
|
2006-05-12 15:42:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2007-08-16 17:59:54 +00:00
|
|
|
`ccollect` is a backup utility written in the sh-scripting language.
|
2006-05-12 15:42:08 +00:00
|
|
|
It does not depend on a specific shell, only `/bin/sh` needs to be
|
|
|
|
bourne shell compatibel (like 'dash', 'ksh', 'zsh', 'bash', ...).
|
|
|
|
|
2007-08-16 17:59:54 +00:00
|
|
|
For more information refer to the manual titled
|
2008-03-10 07:32:51 +00:00
|
|
|
"ccollect - Installing, Configuring and Using" (available as text (asciidoc),
|
|
|
|
texinfo or html).
|
2006-05-12 15:42:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2016-07-21 10:15:37 +00:00
|
|
|
-a, --all::
|
|
|
|
Backup all sources specified in /etc/ccollect/sources
|
|
|
|
|
2017-02-23 19:04:53 +00:00
|
|
|
-e, --errors::
|
|
|
|
Log only errors
|
|
|
|
|
2006-05-12 15:42:08 +00:00
|
|
|
-h, --help::
|
|
|
|
Show the help screen
|
|
|
|
|
2016-07-21 10:15:37 +00:00
|
|
|
-j [max], --jobs [max]::
|
|
|
|
Specifies the number of jobs to run simultaneously.
|
|
|
|
If max is not specified then parallelise all jobs.
|
2006-05-12 15:42:08 +00:00
|
|
|
|
2017-02-23 19:04:53 +00:00
|
|
|
-l FILE, --logfile FILE::
|
|
|
|
Log to specified file
|
|
|
|
|
2016-07-21 10:15:37 +00:00
|
|
|
-p, --parallel::
|
|
|
|
Parallelise backup processes (deprecated from 2.0)
|
2006-05-12 15:42:08 +00:00
|
|
|
|
2017-02-23 19:04:53 +00:00
|
|
|
-s, --syslog::
|
|
|
|
Log to syslog with tag ccollect
|
2009-10-12 06:04:22 +00:00
|
|
|
|
|
|
|
-V, --version::
|
|
|
|
Show version and exit
|
2006-05-12 15:42:08 +00:00
|
|
|
|
2017-02-23 19:04:53 +00:00
|
|
|
-v, --verbose::
|
|
|
|
Be very verbose (uses set -x)
|
|
|
|
|
|
|
|
|
|
|
|
LOGGING MECHANISM
|
|
|
|
-----------------
|
|
|
|
ccollect logging depends on running in non-interactive/interactive mode
|
|
|
|
and on specified optins. The mechanism behaves as the following:
|
|
|
|
|
|
|
|
non-interactive mode::
|
|
|
|
|
|
|
|
* standard output goes to syslog
|
|
|
|
* optional: specify logging into file
|
|
|
|
* log all output by default
|
|
|
|
* optional: log only errors
|
|
|
|
|
|
|
|
interactive mode::
|
|
|
|
|
|
|
|
* standard output goes to stdout
|
|
|
|
* log only errors
|
|
|
|
* optional: log into syslog or file
|
|
|
|
- log all output by default
|
|
|
|
- optional: log only errors
|
|
|
|
|
2008-03-10 07:32:51 +00:00
|
|
|
|
2007-08-17 08:48:33 +00:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2008-03-10 07:32:51 +00:00
|
|
|
ccollect_add_source(1), ccollect_analyse_logs(1), ccollect_logwrapper(1)
|
|
|
|
ccollect_delete_source(1), ccollect_list_intervals(1)
|
2007-08-17 08:48:33 +00:00
|
|
|
|
|
|
|
|
2006-05-12 15:42:08 +00:00
|
|
|
AUTHOR
|
|
|
|
------
|
2007-08-16 17:59:54 +00:00
|
|
|
Nico Schottelius <mailto:nico-ccollect--@--schottelius.org[]>
|
2006-05-12 15:42:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
RESOURCES
|
|
|
|
---------
|
2009-07-01 08:00:18 +00:00
|
|
|
Main web site: http://www.nico.schottelius.org/software/ccollect/[]
|
2006-05-12 15:42:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
COPYING
|
|
|
|
-------
|
2008-03-10 07:32:51 +00:00
|
|
|
Copyright \(C) 2006-2008 Nico Schottelius. Free use of this software is
|
2007-08-16 17:59:54 +00:00
|
|
|
granted under the terms of the GNU General Public License Version 3 (GPLv3).
|