Categories: File Management

rm command on Linux (remove files) [Basic Guide]

The rm command in Linux is used to remove files or directories.

You must have the write permission in the directory where the file is located to remove it. Using the —R and —f options, the rm command removes directories.

In some distributions the command “rm -i” is used as the nickname of the rm command, always requiring confirmation before removing.

The options are:

  • -f Forces the removal of files without asking the user.
  • -r, -R Removes a directory and all of its contents.
  • -i Ask before removing
  • -d, –dir Remove empty directories

Examples:

Remove file 1:

$ in file1

Remove the documents directory and all of its contents:

$ rm —Rf documents
Even if a file is deleted by the rm command, it is possible to recover it with some advanced techniques and time, since rm erases the metadata of the files in the file system table, so that inodes can still exist on the disk, allowing recovery. To delete files in a virtually unrecoverable manner, the shred command must be used.

Uirá Endy Ribeiro

Uirá Endy Ribeiro is a Software Developer and Cloud Computing Architect with a 23-year career. He has master's degrees in computer science and fifteen IT certifications and is the author of 11 books recognized in the IT world market. He is also Director at Universidade Salgado de Oliveira and Director of the Linux Professional Institute - LPI Director's Board.

Uirá Endy Ribeiro

Uirá Endy Ribeiro is a Software Developer and Cloud Computing Architect with a 23-year career. He has master's degrees in computer science and fifteen IT certifications and is the author of 11 books recognized in the IT world market. He is also Director at Universidade Salgado de Oliveira and Director of the Linux Professional Institute - LPI Director's Board.

Recent Posts

Sudo command on Linux (privilege scale) [Basic Guide]

The sudo command on Linux executes a given command as if it were another user.…

2 years ago

SS command on Linux (investigate the network) [Basic Guide]

The ss command on Linux is extremely useful for investigating sockets, providing various information about…

2 years ago

Free Linux command (memory usage) [Basic Guide]

Free Linux command shows the amount of total memory in use and available, as well…

2 years ago

Linux while command (loop – while) [Basic Guide]

The shell has structures for testing conditions and executing certain program sequences several times (loop),…

2 years ago

Linux fstab file (disk mount setup) [Basic Guide]

The /etc/fstab file stores the configuration of which devices should be mounted and what is…

2 years ago

Netcat command on Linux (Swiss network knife) [Basic Guide]

The Netcat Command in Linux or nc is a utility used to do “almost anything”…

2 years ago

This website uses cookies.