|
1 .. -*- coding: utf-8; -*- |
|
2 |
|
3 ============== |
|
4 Duplication. |
|
5 ============== |
|
6 .. contents:: |
|
7 |
|
8 Search for duplicate files. |
|
9 =========================== |
|
10 |
|
11 This utilities only search for duplicate files: |
|
12 |
|
13 http://code.google.com/p/fdupes/ |
|
14 fdupes home page |
|
15 http://ru.wikipedia.org/wiki/Fdupes |
|
16 fdupes wiki page |
|
17 http://duff.sourceforge.net/ |
|
18 duff home page |
|
19 http://freedup.org/ |
|
20 freedup home page |
|
21 http://dupedit.com/ |
|
22 dupedit home page |
|
23 http://rdfind.pauldreik.se/ |
|
24 Rdfind home page |
|
25 http://code.google.com/p/softenido/wiki/FindRepe |
|
26 FindRepe home page |
|
27 |
|
28 freedups. |
|
29 --------- |
|
30 |
|
31 Freedups searches through the directories you specify. When it finds two |
|
32 identical files, it hard links them together. Now the two or more files still |
|
33 exist in their respective directories, but only one copy of the data is stored |
|
34 on disk; both directory entries point to the same data blocks. |
|
35 |
|
36 http://www.stearns.org/freedups/ |
|
37 freedups home page |
|
38 |
|
39 dupmerge. |
|
40 --------- |
|
41 |
|
42 Dupmerge reads a list of files from standard input (eg., as produced by "find . |
|
43 -print") and looks for identical files. When it finds two or more identical |
|
44 files, all but one are unlinked to reclaim the disk space and recreated as hard |
|
45 links to the remaining copy. |
|
46 |
|
47 https://sourceforge.net/projects/dupmerge/ |
|
48 dupmerge home page |
|
49 http://freecode.com/projects/dupmerge |
|
50 dupmerge freecode page |
|
51 |
|
52 ssdeep. |
|
53 ------- |
|
54 |
|
55 ssdeep is a program for computing context triggered piecewise hashes (CTPH). |
|
56 Also called fuzzy hashes, CTPH can match inputs that have homologies. Such |
|
57 inputs have sequences of identical bytes in the same order, although bytes in |
|
58 between these sequences may be different in both content and length. |
|
59 |
|
60 http://ssdeep.sourceforge.net/ |
|
61 ssdeep home page |
|
62 |