summaryrefslogtreecommitdiffstats
path: root/misc-utils/hardlink.1
blob: 594a4a38460eff296c28704fd9298e1140f28f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
'\" t
.\"     Title: hardlink
.\"    Author: [see the "AUTHOR(S)" section]
.\" Generator: Asciidoctor 2.0.15
.\"      Date: 2022-08-04
.\"    Manual: User Commands
.\"    Source: util-linux 2.38.1
.\"  Language: English
.\"
.TH "HARDLINK" "1" "2022-08-04" "util\-linux 2.38.1" "User Commands"
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.ss \n[.ss] 0
.nh
.ad l
.de URL
\fI\\$2\fP <\\$1>\\$3
..
.als MTO URL
.if \n[.g] \{\
.  mso www.tmac
.  am URL
.    ad l
.  .
.  am MTO
.    ad l
.  .
.  LINKSTYLE blue R < >
.\}
.SH "NAME"
hardlink \- link multiple copies of a file
.SH "SYNOPSIS"
.sp
\fBhardlink\fP [options] [\fIdirectory\fP|\fIfile\fP]...
.SH "DESCRIPTION"
.sp
\fBhardlink\fP is a tool that replaces copies of a file with either hardlinks
or copy\-on\-write clones, thus saving space.
.sp
\fBhardlink\fP first creates a binary tree of file sizes and then compares
the content of files that have the same size. There are two basic content
comparison methods. The \fBmemcmp\fP method directly reads data blocks from
files and compares them. The other method is based on checksums (like SHA256);
in this case for each data block a checksum is calculated by the Linux kernel
crypto API, and this checksum is stored in userspace and used for file
comparisons.
.sp
For each file also an "intro" buffer (32 bytes) is cached. This buffer is used
independently from the comparison method and requested cache\-size and io\-size.
The "intro" buffer dramatically reduces operations with data content as files
are very often different from the beginning.
.SH "OPTIONS"
.sp
\fB\-h\fP, \fB\-\-help\fP
.RS 4
Display help text and exit.
.RE
.sp
\fB\-V\fP, \fB\-\-version\fP
.RS 4
Print version and exit.
.RE
.sp
\fB\-v\fP, \fB\-\-verbose\fP
.RS 4
Verbose output, explain to the user what is being done. If specified once, every hardlinked file is displayed. If specified twice, it also shows every comparison.
.RE
.sp
\fB\-q\fP, \fB\-\-quiet\fP
.RS 4
Quiet mode, don\(cqt print anything.
.RE
.sp
\fB\-n\fP, \fB\-\-dry\-run\fP
.RS 4
Do not act, just print what would happen.
.RE
.sp
\fB\-y\fP, \fB\-\-method\fP \fIname\fP
.RS 4
Set the file content comparison method. The currently supported methods are
sha256, sha1, crc32c and memcmp. The default is sha256, or memcmp if Linux
Crypto API is not available. The methods based on checksums are implemented in
zero\-copy way, in this case file contents are not copied to the userspace and all
calculation is done in kernel.
.RE
.sp
\fB\-\-reflink\fP[=\fIwhen\fP]
.RS 4
Create copy\-on\-write clones (aka reflinks) rather than hardlinks. The reflinked files
share only on\-disk data, but the file mode and owner can be different. It\(cqs recommended
to use it with \fB\-\-ignore\-owner\fP and \fB\-\-ignore\-mode\fP options. This option implies
\fB\-\-skip\-reflinks\fP to ignore already cloned files.
.sp
The optional argument \fIwhen\fP can be \fBnever\fP, \fBalways\fP, or \fBauto\fP. If the \fIwhen\fP argument
is omitted, it defaults to \fBauto\fP, in this case, \fBhardlink\fP checks filesystem type and
uses reflinks on BTRFS and XFS only, and fallback to hardlinks when creating reflink is impossible.
The argument \fBalways\fP disables filesystem type detection and fallback to hardlinks, in this case,
only reflinks are allowed.
.RE
.sp
\fB\-\-skip\-reflinks\fP
.RS 4
Ignore already cloned files. This option may be used without \fB\-\-reflink\fP when creating classic hardlinks.
.RE
.sp
\fB\-f\fP, \fB\-\-respect\-name\fP
.RS 4
Only try to link files with the same (base)name. It\(cqs strongly recommended to use long options rather than \fB\-f\fP which is interpreted in a different way by other \fBhardlink\fP implementations.
.RE
.sp
\fB\-p\fP, \fB\-\-ignore\-mode\fP
.RS 4
Link and compare files even if their mode is different. Results may be slightly unpredictable.
.RE
.sp
\fB\-o\fP, \fB\-\-ignore\-owner\fP
.RS 4
Link and compare files even if their owner information (user and group) differs. Results may be unpredictable.
.RE
.sp
\fB\-t\fP, \fB\-\-ignore\-time\fP
.RS 4
Link and compare files even if their time of modification is different. This is usually a good choice.
.RE
.sp
\fB\-c\fP \fB\-\-content\fP
.RS 4
Consider only file content, not attributes, when determining whether two files are equal. Same as \fB\-pot\fP.
.RE
.sp
\fB\-X\fP, \fB\-\-respect\-xattrs\fP
.RS 4
Only try to link files with the same extended attributes.
.RE
.sp
\fB\-m\fP, \fB\-\-maximize\fP
.RS 4
Among equal files, keep the file with the highest link count.
.RE
.sp
\fB\-M\fP, \fB\-\-minimize\fP
.RS 4
Among equal files, keep the file with the lowest link count.
.RE
.sp
\fB\-O\fP, \fB\-\-keep\-oldest\fP
.RS 4
Among equal files, keep the oldest file (least recent modification time). By default, the newest file is kept. If \fB\-\-maximize\fP or \fB\-\-minimize\fP is specified, the link count has a higher precedence than the time of modification.
.RE
.sp
\fB\-x\fP, \fB\-\-exclude\fP \fIregex\fP
.RS 4
A regular expression which excludes files from being compared and linked.
.RE
.sp
\fB\-i\fP, \fB\-\-include\fP \fIregex\fP
.RS 4
A regular expression to include files. If the option \fB\-\-exclude\fP has been given, this option re\-includes files which would otherwise be excluded. If the option is used without \fB\-\-exclude\fP, only files matched by the pattern are included.
.RE
.sp
\fB\-s\fP, \fB\-\-minimum\-size\fP \fIsize\fP
.RS 4
The minimum size to consider. By default this is 1, so empty files will not be linked. The \fIsize\fP argument may be followed by the multiplicative suffixes KiB (=1024), MiB (=1024*1024), and so on for GiB, TiB, PiB, EiB, ZiB and YiB (the "iB" is optional, e.g., "K" has the same meaning as "KiB").
.RE
.sp
\fB\-S\fP, \fB\-\-maximum\-size\fP \fIsize\fP
.RS 4
The maximum size to consider. By default this is 0 and 0 has the special meaning of unlimited. The \fIsize\fP argument may be followed by the multiplicative suffixes KiB (=1024), MiB (=1024*1024), and so on for GiB, TiB, PiB, EiB, ZiB and YiB (the "iB" is optional, e.g., "K" has the same meaning as "KiB").
.RE
.sp
\fB\-b\fP, \fB\-\-io\-size\fP \fIsize\fP
.RS 4
The size of the \fBread\fP(2) or \fBsendfile\fP(2) buffer used when comparing file contents.
The \fIsize\fP argument may be followed by the multiplicative suffixes KiB, MiB,
etc.  The "iB" is optional, e.g., "K" has the same meaning as "KiB". The
default is 8KiB for memcmp method and 1MiB for the other methods. The only
memcmp method uses process memory for the buffer, other methods use zero\-copy
way and I/O operation is done in the kernel. The size may be altered on the fly
to fit a number of cached content checksums.
.RE
.sp
\fB\-r\fP, \fB\-\-cache\-size\fP \fIsize\fP
.RS 4
The size of the cache for content checksums. All non\-memcmp methods calculate checksum for each
file content block (see \fB\-\-io\-size\fP), these checksums are cached for the next comparison. The
size is important for large files or a large sets of files of the same size. The default is
10MiB.
.RE
.SH "ARGUMENTS"
.sp
\fBhardlink\fP takes one or more directories which will be searched for files to be linked.
.SH "BUGS"
.sp
The original \fBhardlink\fP implementation uses the option \fB\-f\fP to force hardlinks creation between filesystem. This very rarely usable feature is no more supported by the current \fBhardlink\fP.
.sp
\fBhardlink\fP assumes that the trees it operates on do not change during operation. If a tree does change, the result is undefined and potentially dangerous. For example, if a regular file is replaced by a device, \fBhardlink\fP may start reading from the device. If a component of a path is replaced by a symbolic link or file permissions change, security may be compromised. Do not run \fBhardlink\fP on a changing tree or on a tree controlled by another user.
.SH "AUTHOR"
.sp
There are multiple \fBhardlink\fP implementations. The very first implementation is from Jakub Jelinek for Fedora distribution, this implementation has been used in util\-linux between versions v2.34 to v2.36. The current implementations is based on Debian version from Julian Andres Klode.
.SH "REPORTING BUGS"
.sp
For bug reports, use the issue tracker at \c
.URL "https://github.com/util\-linux/util\-linux/issues" "" "."
.SH "AVAILABILITY"
.sp
The \fBhardlink\fP command is part of the util\-linux package which can be downloaded from \c
.URL "https://www.kernel.org/pub/linux/utils/util\-linux/" "Linux Kernel Archive" "."