Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bedup(8) [debian man page]

bedup(8)							       bedup								  bedup(8)

NAME
bedup - program for deduplication program with additional knowledge of burp SYNOPSIS
bedup [options] A file deduplication program with additional knowledge of burp storage directories. This program comes with the burp backup and restore package. OPTIONS
-c path Path to config file (default: /etc/burp/burp.conf). -g <list of group names> Only run on the directories of clients that are in one of the groups specified. The list is comma-separated. To put a client in a group, use the 'dedup_group' option in the client configuration file on the server. -h|-? Print help text and exit. -l Hard link any duplicate files found. -m <number> Maximum number of hard links to a single file. (non-burp mode only - in burp mode, use the max_hardlinks option in the configuration file) The default is 10000. On ext3, the maximum number of links possible is 32000, but space is needed for the normal operation of burp. -n <list of directories> Non-burp mode. Deduplicate any (set of) directories. -v Print version and exit. By default, bedup will read /etc/burp/burp.conf and deduplicate client storage directories using special knowledge of the structure. With '-n', this knowledge is turned off and you have to specify the directories to deduplicate on the command line. Running with '-n' is therefore dangerous if you are deduplicating burp storage directories. BUGS
If you find bugs, please report them to the email list. See the website <http://burp.grke.net/> for details. AUTHOR
The main author of Burp is Graham Keeling. COPYRIGHT
See the LICENCE file included with the source distribution. February 10, 2012 bedup(8)

Check Out this Related Man Page

LDCONFIG(8)						     Linux Programmer's Manual						       LDCONFIG(8)

NAME
/sbin/ldconfig - configure dynamic linker run-time bindings SYNOPSIS
/sbin/ldconfig [ -nNvXV ] [ -f conf ] [ -C cache ] [ -r root ] directory ... /sbin/ldconfig -l [ -v ] library ... /sbin/ldconfig -p DESCRIPTION
ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). The cache is used by the run-time linker, ld.so or ld- linux.so. ldconfig checks the header and filenames of the libraries it encounters when determining which versions should have their links updated. ldconfig will attempt to deduce the type of ELF libs (i.e., libc5 or libc6/glibc) based on what C libs, if any, the library was linked against. Some existing libs do not contain enough information to allow the deduction of their type. Therefore, the /etc/ld.so.conf file format allows the specification of an expected type. This is only used for those ELF libs which we can not work out. The format is "dirname=TYPE", where TYPE can be libc4, libc5, or libc6. (This syntax also works on the command line.) Spaces are not allowed. Also see the -p option. ldconfig should normally be run by the superuser as it may require write permission on some root owned directories and files. OPTIONS
-v Verbose mode. Print current version number, the name of each directory as it is scanned, and any links that are created. Overrides quiet mode. -n Only process directories specified on the command line. Don't process the trusted directories (/lib and /usr/lib) nor those speci- fied in /etc/ld.so.conf. Implies -N. -N Don't rebuild the cache. Unless -X is also specified, links are still updated. -X Don't update links. Unless -N is also specified, the cache is still rebuilt. -f conf Use conf instead of /etc/ld.so.conf. -C cache Use cache instead of /etc/ld.so.cache. -r root Change to and use root as the root directory. -l Library mode. Manually link individual libraries. Intended for use by experts only. -p Print the lists of directories and candidate libraries stored in the current cache. FILES
/lib/ld.so run-time linker/loader /etc/ld.so.conf File containing a list of colon, space, tab, newline, or comma-separated directories in which to search for libraries. /etc/ld.so.cache File containing an ordered list of libraries found in the directories specified in /etc/ld.so.conf, as well as those found in /lib and /usr/lib. SEE ALSO
ldd(1), ld.so(8) COLOPHON
This page is part of release 3.25 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2009-04-15 LDCONFIG(8)
Man Page