]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - misc/chattr.1.in
Applied Andrew Morton's patch to support the dirsync option.
[thirdparty/e2fsprogs.git] / misc / chattr.1.in
1 .\" -*- nroff -*-
2 .TH CHATTR 1 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
3 .SH NAME
4 chattr \- change file attributes on a Linux second extended file system
5 .SH SYNOPSIS
6 .B chattr
7 [
8 .B \-RV
9 ]
10 [
11 .B \-v
12 .I version
13 ]
14 [
15 .I mode
16 ]
17 .I files...
18 .SH DESCRIPTION
19 .B chattr
20 changes the file attributes on a Linux second extended file system.
21 .PP
22 The format of a symbolic mode is +-=[ASacDdistu].
23 .PP
24 The operator `+' causes the selected attributes to be added to the
25 existing attributes of the files; `-' causes them to be removed; and
26 `=' causes them to be the only attributes that the files have.
27 .PP
28 The letters `ASacDdijsu' select the new attributes for the files:
29 don't update atime (A), synchronous updates (S), synchronous directory
30 updates (D), append only (a), compressed (c), no dump (d), immutable (i),
31 data journalling (j), secure deletion (s), and undeletable (u).
32 .SH OPTIONS
33 .TP
34 .B \-R
35 Recursively change attributes of directories and their contents.
36 Symbolic links encountered during recursive directory traversals are
37 ignored.
38 .TP
39 .B \-V
40 Be verbose with chattr's output and print the program version.
41 .TP
42 .BI \-v " version"
43 Set the file's version/generation number.
44 .SH ATTRIBUTES
45 When a file with the 'A' attribute set is modified, its atime record is
46 not modified. This avoids a certain amount of disk I/O for laptop
47 systems.
48 .PP
49 A file with the `a' attribute set can only be open in append mode for writing.
50 Only the superuser can set or clear this attribute.
51 .PP
52 A file with the `c' attribute set is automatically compressed on the disk
53 by the kernel. A read from this file returns uncompressed data. A write to
54 this file compresses data before storing them on the disk.
55 .PP
56 A file with the `d' attribute set is not candidate for backup when the
57 .BR dump (8)
58 program is run.
59 .PP
60 A file with the `i' attribute cannot be modified: it cannot be deleted or
61 renamed, no link can be created to this file and no data can be written
62 to the file. Only the superuser can set or clear this attribute.
63 .PP
64 A file with the `j' attribute has all of its data written to the ext3
65 journal before being written to the file itself, if the filesystem is
66 mounted with the "data=ordered" or "data=writeback" options. When the
67 filesystem is mounted with the "data=journalled" option all file data
68 is already journalled and this attribute has no effect.
69 .PP
70 When a file with the `s' attribute set is deleted, its blocks are zeroed and
71 written back to the disk.
72 .PP
73 When a file with the `S' attribute set is modified,
74 the changes are written synchronously on the disk; this is equivalent to
75 the `sync' mount option applied to a subset of the files.
76 .PP
77 When a directory with the `D' attribute set is modified,
78 the changes are written synchronously on the disk; this is equivalent to
79 the `dirsync' mount option applied to a subset of the files.
80 .PP
81 A file with the 't' attribute will not have a partial block fragment at
82 the of the file merged with other files (for those filesystems which
83 support tail-merging). This is necessary for applications such as LILO
84 which read the filesystem directly, and who don't understand tail-merged
85 files.
86 .PP
87 When a file with the `u' attribute set is deleted, its contents are saved.
88 This allows the user to ask for its undeletion.
89 .PP
90 .SH AUTHOR
91 .B chattr
92 was written by Remy Card <Remy.Card@linux.org>.
93 .SH BUGS AND LIMITATIONS
94 As of Linux 2.2, the `c', 's', and `u' attribute are not honored
95 by the kernel filesystem code. These attributes will be implemented
96 in a future ext2 fs version.
97 .PP
98 The `j' option is only useful if the filesystem is mounted as ext3.
99 .PP
100 The `D' option is only useful on Linux kernel 2.5.19 and later.
101 .SH AVAILABILITY
102 .B chattr
103 is part of the e2fsprogs package and is available from
104 http://e2fsprogs.sourceforge.net.
105 .SH SEE ALSO
106 .BR lsattr (1)