Ubuntu Linux: Delete directory command in Terminal

by Vivek Gite on October 24, 2007 · 20 comments

Q. Can you tell me command to delete a directory in terminal?

A. You need to use the rmdir utility / command. The rmdir utility removes the directory entry specified by each directory argument, provided it is empty. Arguments are processed in the order given. In order to remove both a parent directory and a subdirectory of that parent, the subdirectory must be specified first so the parent directory is empty when rmdir tries to remove it.

Remove / Delete directory called /tmp/foo

Open the terminal. Type the following command:
$ rmdir /tmp/foo

Recursive removal

Remove all files and directories (recursive removal):
$ rm -rf /path/to/directory
$ rm -rf /tmp/foo

Please note that you can also pass -p option to rmdir command. Each directory argument is treated as a pathname of which all components will be removed, if they are empty, starting with the last most component:
$ rmdir -p /tmp/x/y/z

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 20 comments… read them below or add one }

1 David January 25, 2009

Thanks for this. However, it doesn’t always work. I found that Thunderbird stores a hidden file in a /home directory and I kept getting a message saying that the folder was not empty. In the end, I used “gksudo nautilus”, renamed the hidden file and then deleted it.

Reply

2 PCMaind July 11, 2009

tnx for this

Reply

3 Raffy \n Apurillo August 13, 2009

It really works thanks

Reply

4 LCC February 5, 2010

I really doesn’t work. I get the error message saying rmdir: invalid option — ‘r’ when i put in the following:
rmdir -r /sametime-connect-8.0.2/opt/ibm/lotus/sametime/eclipse/plugins/org.apache.lecene_1.4.103.v20060601/META-INF

Reply

5 Amjad April 1, 2010

@ LCC:
Go where you have your directory. But dont enter into Directory.Use
$> rm -rf Directory/*
This shall remove all the files contained in “Directory”.
Then do
$> rmdir Directory
This shall remove the Directory.
Hope it works

Reply

6 D0tty January 10, 2012

You are a god. Simple and clear instructions that worked when apparently I was doing something wrong with the instructions given above.

<3

Reply

7 nikhil June 25, 2010

thanx 4 dis help…

Reply

8 Ahsan November 10, 2010

thanx it really helped me

Reply

9 Techie November 19, 2010

I tried everything but still no luck. See what happened :

[rockie01@mxrplnux01 home]$ sudo rmdir -rf /home/jzhou01
rmdir: invalid option — r
Try `rmdir –help’ for more information.
[rockie01@mxrplnuxt01 home]$ sudo rmdir -rf /home/jzhou01/*
rmdir: invalid option — r
Try `rmdir –help’ for more information.

I also tried to delete the user with userdel -r but it says, the user does not exist then when I check the home directory, the user name and subdirectories are still there. Someone who deleted the user account before me did not do it correctly because the user name and it’s sub-directories are still in the home directory. How do I remove this user name directory?

Reply

10 Amjad November 19, 2010

rmdir -r is nothing.
rm -rf will remove the files in a certain driectory.
when the directory is empty, do rmdir .
like
$>rm -rf /home/jzhou01/*
then
$> rmdir /home/jzhou01/
Hope it works.
and by the way I dont get why u want it with sudo.

Reply

11 Techie November 19, 2010

Actually I did those already. I tried :
$ sudo rm -rf /home/jzhou01/* and $sudo rmdir /home/jzhou01 but it did not work.

With the -rf the reply was :
rmdir: invalid option — r
Try `rmdir –help’ for more information

Without the -rf and just $sudo rmdir /home/jzhou01, the reply was :

Directory is not empty.

I found out later that the only files left in the directory were started with a . , sorta like .profile or some other invisible files that will not show with: ls /home/namedir or ls -la /home/namedir

When I tried this syntax :
$sudo rm /home/jzhou01 it worked. I checked the /home directory and the username of jzhou01 and it’s subdirectories and files were deleted or removed.

We use sudo because our management is very strict and only three senior systems admins in Unix are the ones with root access besides the manager of that dept. Otherwise all others in the Intermediate Systems Admin category will be in the sudoer’s file and will just have to use “sudo” for any administrative command. Very strict training so that when we reach the Senior level, we are able to fine tune and troubleshoot problems easily.

thanks.

Reply

12 Kenneth Wahl Jr. April 22, 2011

using “sudo” will confirm all files of specified directory will be removed but there’s no need unless the permissions are set against your needs. Try sudo chmod 770 “file name”(or 777, shouldn’t matter really. There is a small formula to determine the permissions with chmod, look it up) Make sure you’re in the directory with the file or type in the full path i.e. sudo chmod 770 BunkGames if you’re in the directory and sudo chmod 770 /home/user/Games/BunkGames if your anywhere else. Hope this helped. Also make sure you use the “man pages”. man=manual and if you type “man” before nearly any command you will get to see nearly all of that commands capabilities and how to use them.

Reply

13 stullko December 19, 2010

Thanks for this! it really helped me!

Reply

14 goosy January 28, 2011

thx for this handy help

Reply

15 black skull February 15, 2011

thx for help :)

Reply

16 wildcat February 20, 2011

I am having real trouble with Linux, i need some help.. I can’t figure out how to remove a directory i made, i was trying to install openoffice 3.3, then following the steps posted in some website, something like ( sudo -vxzf filename) done that and other stuff, the outcome was a file directory, that i couldn’t remove anymore “and no openoffice at all”. I have tried ( $rmdir dirpath), when i exe. that command all that says is ( dirpath is a directory).. that’s all i checked the dirpath, it’s still there. I am new to Linux..appreciate any help.
I am running Ubuntu 10.10.

Reply

17 Techie February 20, 2011

Use sudo rmdir -rf /dir/dir/*file* <–(the complete directory path) then try rmdir /dir/dir/*

Reply

18 matthew sellers March 6, 2011

i know this doesnt necessarily go with the topic but i am really getting frusterated.. ok so i cant seem to get the terminal to let me type in my sudo password.. i put in the coding for the compiz fusion but when it brings up the statement to type my sudo password i try and nothing is coming up no letters what so ever… it works all the way up until that point.. so i hit enter to try it again and it keeps doin the same thing but only with my pass word can some one please help me figure this out cuz it is really hindering the work i am trying to do..

Reply

19 Techie March 6, 2011

This is a secured login. Of course it will not show what you type in. It is invisible. When it prompts you for your password, you type your password in but you do not see ******* as you type in your password in other terminals. This is a security measure. Just type your password (yes, it is there even if you cannot see it. It’s invisible) then hit enter. This will log you into the system. Then you can just do your thing. Unless you are in the sudoers file. In order to be able to access a particular machine, first of all, you should have an account set up in the box in order for you to log in. Second, if you do not have straight root access (usually done for first level support as having root access might be too dangerous for inexperienced admins), you will be added to a sudoers file. If you are on the sudoers file then depending on what type of group access you have, your sudo config file only limits you to what you are allowed to do. Ask you Systems Admin (Unix / Limux) to see what the real issue is. Usually, they are just trying to give someone a hard time or you might need a manager’s approval before you are given access by the Unix Systems Admin.

Reply

20 Amjad March 6, 2011

@matthew: This might tell you.

http://ubuntu-ky.ubuntuforums.org/showthread.php?t=1126728
In fact so far I don’t know any option to show the password characters.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 11 + 2 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: