Linux Tutorial
Linux File/Directory Management
Linux Packaging And Compression
Vim Text Editor
Linux Text Processing
Linux Software Installation
Linux User/User Group Management
Linux Permission Management
Linux Filesystem Management
Linux Advanced Filesystem Management
Linux System Management
Linux Backup and Recovery
Linux System Service Management
Linux System Log Management
Linux Boot Management
LAMP/LNMP Environment
SELinux Management
The lsattr
command in Linux is used to list the attributes of files and directories on an ext2, ext3, or ext4 filesystem. File attributes are special flags that can be set on a file to modify its behavior or restrict its access. In this tutorial, we will explain the basics of the lsattr
command and its usage.
1. Basic Usage
To list the attributes of a file or directory, simply run the lsattr
command followed by the file or directory path:
lsattr file.txt
The output will display the file attributes along with the file name:
-------------e---- file.txt
The dashes -
indicate that the attribute is not set, while a letter indicates an active attribute. In the example above, the e
attribute is set, which signifies that the file is using extents for mapping the disk blocks.
2. Understanding File Attributes
Here are some common file attributes that can be displayed using lsattr
:
a
(append only): The file can only be opened in append mode, meaning data can be added but existing content cannot be modified or deleted.c
(compressed): The file is automatically compressed by the filesystem.d
(no dump): The file is not included when creating backups using the dump
command.e
(extents): The file uses extents for mapping the disk blocks (common in ext4 filesystems).i
(immutable): The file cannot be modified, deleted, or renamed; no link can be created to it.j
(journaling): The file's data is written to the journal before being written to the main file system.s
(secure deletion): The file's space is overwritten with zeros when the file is deleted.u
(undeletable): The file's content is saved after deletion, allowing it to be undeleted later.A
(no atime updates): The access time (atime
) of the file is not updated when the file is accessed.3. List Attributes for Directories
To list the attributes of files within a directory, use the -R
(recursive) option:
lsattr -R /path/to/directory
This command will display the attributes of all files and subdirectories within the specified directory.
4. Combining lsattr with other commands
You can also use lsattr
in conjunction with other commands using pipes. For example, to list all files in a directory with the immutable attribute set, you can use the following command:
lsattr -R /path/to/directory | grep -E "^----i"
In summary, the lsattr
command is a useful tool for listing the attributes of files and directories in Linux. Understanding file attributes can help you manage files more effectively and apply specific behaviors or restrictions when necessary. By following this tutorial, you can use lsattr
to view and understand the attributes of your files and directories.
lsattr command examples in Linux:
Use lsattr
to view file attributes. For example:
lsattr /path/to/file
How to use lsattr to display file attributes:
Display file attributes with the lsattr
command. The output shows the file's attributes, including read-only (i
for immutable), no-dump (d
), and more.
Linux extended file attributes with lsattr:
Extended file attributes are additional metadata associated with files. Use lsattr
to view these attributes.
List file attributes using lsattr in Unix:
List file attributes in Unix by running lsattr
on the target file or directory.
Working with immutable files using lsattr:
Immutable files cannot be modified, deleted, or linked. Use chattr
to set the immutable attribute, and lsattr
to verify.
Example:
sudo chattr +i /path/to/file lsattr /path/to/file
Setting and removing file attributes in Linux:
Use chattr
to set or remove file attributes. For example, to set the append-only attribute:
sudo chattr +a /path/to/file
To remove the append-only attribute:
sudo chattr -a /path/to/file
lsattr vs chattr: file attribute management in Linux:
lsattr
: Used to view file attributes.chattr
: Used to change file attributes, including setting and removing attributes.Example:
lsattr /path/to/file chattr +i /path/to/file