How do I delete folders under Linux operating systems?
You can the folder or directory, if they are empty using the following rmdir command.
Syntax
rmdir foldername rmdir dirname rmdir /path/to/folder rmdir /path/to/directory
Example
In this example, delete the directory called /tmp/letters
rmdir /tmp/letters
Task: Remove DIRECTORY and Its Ancestors
The -p option can delete directory and its subdirectories:
rmdir -p dir1/dir2/dir3
Task: Delete All Files and Folders Including Subdirectories
Use the following syntax:
rm -rf /path/to/dir
For example, delete /home/vivek/docs and all its subdirectories including file, enter:
rm -rf /home/vivek/docs ls -l /home/vivek/docs
GUI File Manager
The Nautilus file manager (GNOME desktop) provides a simple and integrated way to manage your files and applications. Just open it from Places menu and select folder and hit delete key.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop











{ 2 comments… read them below or add one }
Look out Vivek,
You have just invented 2 new commands : “mdir” and “m”
(instead of “mkdir” (3 times) and “rm” (2 times).
Philippe
Philippe,
There is a bug in WP plugin that displays bash script and commands; it eats ‘r’ character when enclosed in formatting tags as follows:
Which renders it as
To avoid this I need to add an extra newline to command:
This one renders correctly:
The plugin author stopped updating plugin and I’m not able to find out the bug on my own :( so some time we get this kind of weird problems. I’d like to thank you for pointing out this and while fixing this I found another bug because of your comment too. It was related to image display. I’ll buy you beer and pizza!