blob: af9d6a0359ead9837505cdf124d4c9dc5905e267 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001.\" -*- nroff -*-
Theodore Ts'o74becf31997-04-26 14:37:06 +00002.TH CHATTR 1 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
Theodore Ts'o3839e651997-04-26 13:21:57 +00003.SH NAME
4chattr \- 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
12version
13]
14[
15mode
16]
17.I files...
18.SH DESCRIPTION
19.B chattr
20changes the files attributes on an second extended file system.
21.PP
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +000022The format of a symbolic mode is +-=[ASacdisu].
Theodore Ts'o3839e651997-04-26 13:21:57 +000023.PP
24The operator `+' causes the selected attributes to be added to the
25existing attributes of the files; `-' causes them to be removed; and
26`=' causes them to be the only attributes that the files have.
27.PP
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +000028The letters `ASacdisu' select the new attributes for the files:
29don't update atime (A), synchronous updates (S), append only (a),
30compressed (c), immutable (i), no dump (d),
Theodore Ts'of3db3561997-04-26 13:34:30 +000031secure deletion (s), and undeletable (u).
Theodore Ts'o3839e651997-04-26 13:21:57 +000032.SH OPTIONS
33.TP
34.I -R
35Recursively change attributes of directories and their contents.
36.TP
37.I -V
38Verbosely describe changed attributes.
39.TP
40.I -v version
41Set the files version.
Theodore Ts'of3db3561997-04-26 13:34:30 +000042.SH ATTRIBUTES
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +000043When a file with the 'A' attribute set is modified, its atime record is
44not modified. This avoid a certain amount of disk I/O for laptop
45systems.
46
Theodore Ts'of3db3561997-04-26 13:34:30 +000047A file with the `a' attribute set can only be open in append mode for writing.
48
49A file with the `c' attribute set is automatically compressed on the disk
50by the kernel. A read from this file returns uncompressed data. A write to
51this file compresses data before storing them on the disk.
52
53A file with the `d' attribute set is not candidate for backup when the
54.BR dump (8)
55program is run.
56
57A file with the `i' attribute cannot be modified: it cannot be deleted or
58renamed, no link can be created to this file and no data can be written
59to the file. Only the superuser can set or clear this attribute.
60
61When a file with the `s' attribute set is deleted, its blocks are zeroed and
62written back to the disk.
63
64When a file with the `S' attribute set is modified,
65the changes are written synchronously on the disk; this is equivalent to
66the `sync' mount option applied to a subset of the files.
67
68When a file with the `u' attribute set is deleted, its contents is saved.
69This allows the user to ask for its undeletion.
Theodore Ts'o5c576471997-04-29 15:29:49 +000070
Theodore Ts'o3839e651997-04-26 13:21:57 +000071.SH AUTHOR
72.B chattr
73has been written by Remy Card <card@masi.ibp.fr>, the developer and maintainer
74of the ext2 fs.
75.SH BUGS AND LIMITATIONS
Theodore Ts'of3db3561997-04-26 13:34:30 +000076As of ext2 fs 0.5a, the `c' and `u' attribute are not honoured by the kernel
Theodore Ts'o5c576471997-04-29 15:29:49 +000077code. As of the Linux 2.0 kernel, the 'A' attribute is not yet supported by
78the kernel code. (The noatime code is still in testing.)
Theodore Ts'o3839e651997-04-26 13:21:57 +000079.PP
Theodore Ts'of3db3561997-04-26 13:34:30 +000080These attributes will be implemented in a future ext2 fs version.
Theodore Ts'o3839e651997-04-26 13:21:57 +000081.SH AVAILABILITY
82.B chattr
Theodore Ts'of3db3561997-04-26 13:34:30 +000083is available for anonymous ftp from ftp.ibp.fr and tsx-11.mit.edu in
84/pub/linux/packages/ext2fs.
Theodore Ts'o3839e651997-04-26 13:21:57 +000085.SH SEE ALSO
86.BR lsattr (1)