1. Introduction
When using Ubuntu or other Linux distributions, deleting files and directories is a common task. However, unlike Windows or macOS, Linux does not have a built-in “Trash” feature for command-line operations. If you delete something by mistake, restoring it becomes difficult. This article explains how to use the rm command to safely and efficiently delete files in Ubuntu. It also covers tips to prevent accidental deletions and introduces recovery methods in case something is mistakenly removed.
2. Overview of the rm Command
The rm command is the standard command used to delete files in Linux. Using this command, you can remove specific files and directories. Since deleted files cannot be easily recovered, caution is required when executing this command.
2.1 Basic Syntax of the rm Command
rm filename
For example, to delete a file named example.txt, enter the following:
rm example.txt
Executing this command will permanently delete the file. Unlike GUI environments that temporarily move files to a trash bin, the file is removed instantly, so verifying the target before deletion is essential.
3. Options for the rm Command
The rm command offers several useful options. By combining these options, you can perform deletions more safely and efficiently.
3.1 The -r Option (Recursive Directory Deletion)
By default, the rm command does not delete directories. To remove a directory along with all its files and subdirectories, use the -r (recursive) option.
rm -r directory_name
For example, to delete a directory named /example_dir:
rm -r /example_dir
This option removes everything inside the directory, including subdirectories and files.
3.2 The -i Option (Prompt Before Deletion)
If you want to be prompted before deleting files, use the -i option. This helps prevent accidental deletions.
rm -i example.txt
When executed, the system will ask, “Delete example.txt?”. You can respond with “y” or “n,” reducing the risk of unintended deletions.
3.3 The -f Option (Force Deletion)
The -f (force) option deletes files without confirmation, even if they are write-protected or otherwise restricted.
rm -f example.txt
Because it bypasses confirmation prompts, this option should be used carefully, but it is helpful when deleting many files at once or suppressing error messages.
3.4 The -d Option (Delete Empty Directories)
To delete an empty directory, use the -d option. This only works if the directory contains no files.
rm -d /emptydir
If the directory is empty, it will be removed without issue.

4. Precautions When Deleting Files
4.1 Tips to Prevent Accidental Deletion
Deleting files requires caution. To avoid unintentionally removing important data, keep the following practices in mind:
- Use the
-ioption by default: Configure thealiascommand so thatrmalways behaves likerm -i, ensuring confirmation prompts for every deletion. - Create backups: Always back up essential files before deleting them. Copying data to an external drive or cloud storage reduces the risk of data loss.
4.2 Using the alias Command
For example, adding the following configuration to .bashrc makes all rm commands act as if -i was specified:
alias rm='rm -i'
This ensures confirmation prompts appear automatically, reducing the risk of accidental deletions.
5. Deleting Multiple Files at Once
If you want to delete multiple files at the same time, use the wildcard *. For example, to delete all .txt files in the current directory:
rm *.txt
The wildcard *.txt matches all files ending in .txt. This is extremely useful when removing large numbers of specific files.
6. Displaying Deletion Logs
To see which files were deleted, use the -v (verbose) option. It displays information about each deleted item.
rm -v example.txt
After execution, a message such as “removed ‘example.txt’” will be displayed. This is especially useful when deleting multiple files.
7. How to Recover Deleted Files
Recovering files deleted with rm is extremely challenging. However, if you accidentally delete a file, certain recovery tools may help. Utilities such as extundelete and testdisk can restore files depending on the condition of the file system.
7.1 Recovering with extundelete
extundelete is a tool for recovering deleted files on ext3/ext4 file systems. The basic usage is as follows:
sudo extundelete /dev/sdX --restore-file path/filename
Taking action immediately after deletion increases the chance of recovery. However, depending on disk usage, recovery may still fail, so backing up important data in advance is crucial.
8. Summary
You can efficiently delete files in Ubuntu using the rm command, but it is essential to consider the risk of accidental deletion. Always back up important data and confirm the files you are removing. By using options like -i and configuring alias, you can significantly reduce the chance of mistakes and perform file operations safely.
