]> git.ipfire.org Git - thirdparty/util-linux.git/blob - sys-utils/blkdiscard.8
build-sys: release++ (v2.34)
[thirdparty/util-linux.git] / sys-utils / blkdiscard.8
1 .TH BLKDISCARD 8 "July 2014" "util-linux" "System Administration"
2 .SH NAME
3 blkdiscard \- discard sectors on a device
4 .SH SYNOPSIS
5 .B blkdiscard
6 [options]
7 .RB [ \-o
8 .IR offset ]
9 .RB [ \-l
10 .IR length ]
11 .I device
12 .SH DESCRIPTION
13 .B blkdiscard
14 is used to discard device sectors. This is useful for solid-state
15 drivers (SSDs) and thinly-provisioned storage. Unlike
16 .BR fstrim (8),
17 this command is used directly on the block device.
18 .PP
19 By default,
20 .B blkdiscard
21 will discard all blocks on the device. Options may be used to modify
22 this behavior based on range or size, as explained below.
23 .PP
24 The
25 .I device
26 argument is the pathname of the block device.
27 .PP
28 .B WARNING: All data in the discarded region on the device will be lost!
29 .SH OPTIONS
30 The
31 .I offset
32 and
33 .I length
34 arguments may be followed by the multiplicative suffixes KiB (=1024),
35 MiB (=1024*1024), and so on for GiB, TiB, PiB, EiB, ZiB and YiB (the "iB" is
36 optional, e.g., "K" has the same meaning as "KiB") or the suffixes
37 KB (=1000), MB (=1000*1000), and so on for GB, TB, PB, EB, ZB and YB.
38 .TP
39 .BR \-o , " \-\-offset \fIoffset"
40 Byte offset into the device from which to start discarding. The provided value
41 will be aligned to the device sector size. The default value is zero.
42 .TP
43 .BR \-l , " \-\-length \fIlength"
44 The number of bytes to discard (counting from the starting point). The provided value
45 will be aligned to the device sector size. If the specified value extends past
46 the end of the device,
47 .B blkdiscard
48 will stop at the device size boundary. The default value extends to the end
49 of the device.
50 .TP
51 .BR \-p , " \-\-step \fIlength"
52 The number of bytes to discard within one iteration. The default is to discard
53 all by one ioctl call.
54 .TP
55 .BR \-s , " \-\-secure"
56 Perform a secure discard. A secure discard is the same as a regular discard
57 except that all copies of the discarded blocks that were possibly created by
58 garbage collection must also be erased. This requires support from the device.
59 .TP
60 .BR \-z , " \-\-zeroout"
61 Zero-fill rather than discard.
62 .TP
63 .BR \-v , " \-\-verbose"
64 Display the aligned values of
65 .I offset
66 and
67 .IR length .
68 If the \fB\-\-step\fR option is specified, it prints the discard progress every second.
69 .TP
70 .BR \-V , " \-\-version"
71 Display version information and exit.
72 .TP
73 .BR \-h , " \-\-help"
74 Display help text and exit.
75 .SH AUTHOR
76 .MT lczerner@redhat.com
77 Lukas Czerner
78 .ME
79 .SH SEE ALSO
80 .BR fstrim (8)
81 .SH AVAILABILITY
82 The blkdiscard command is part of the util-linux package and is available
83 .UR https://\:www.kernel.org\:/pub\:/linux\:/utils\:/util-linux/
84 Linux Kernel Archive
85 .UE .