delete unix directory


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers delete unix directory
# 1  
Old 10-22-2011
delete unix directory

I installed membersgear into my website and decided it was not right for me. I issued rm -r on directory membersgear and it deleted everything except the subdirectory templates_c. I have found several directories in this directory which are named like %%114. Ownership on these directories drwxr-xr-x 32 pdinardo users 8192 Oct 21 22:08 ..
drwxrwxrwx 3 paul users 4096 Oct 21 19:31 .
drwxrwxrwx 13 paul users 4096 Oct 21 19:27 templates_c. When I go into templates_c and do a ls -lta I get
drwxr-x--x 3 apache apache 4096 Oct 21 19:27 %%170
drwxr-x--x 3 apache apache 4096 Oct 21 19:27 %%329
drwxr-x--x 3 apache apache 4096 Oct 21 19:26 %%237
drwxr-x--x 3 apache apache 4096 Oct 21 19:26 %%256
drwxr-x--x 3 apache apache 4096 Oct 21 19:25 %%158
drwxr-x--x 3 apache apache 4096 Oct 21 19:23 %%221
drwxr-x--x 4 apache apache 4096 Oct 21 19:23 %%138
drwxr-x--x 3 apache apache 4096 Oct 21 19:11 %%136
drwxr-x--x 3 apache apache 4096 Oct 21 19:11 %%114
drwxr-x--x 3 apache apache 4096 Oct 21 19:11 %%287.
How do I delete these directories?
# 2  
Old 10-22-2011
Code:
rmdir [%][%]*

?
# 3  
Old 10-22-2011
I did rmdir [%][%]*
I get:
rmdir: %%114: Directory not empty
rmdir: %%136: Directory not empty
rmdir: %%138: Directory not empty
rmdir: %%158: Directory not empty
rmdir: %%170: Directory not empty
rmdir: %%221: Directory not empty
rmdir: %%224: Directory not empty
rmdir: %%237: Directory not empty
rmdir: %%256: Directory not empty
rmdir: %%287: Directory not empty
rmdir: %%329: Directory not empty
Are there hidden files that need to be deleted?

---------- Post updated at 08:49 AM ---------- Previous update was at 08:07 AM ----------

When I go into one of the subdirectory I try to do ls ls -a and I get
ls: .: Permission denied
[pdinardo@login1 %%114]$ ls -a
ls: .: Permission denied
# 4  
Old 10-22-2011
as apache user :
Code:
rm -rf [%][%]*

Note that you cannot remove a directory you currently are in
# 5  
Old 10-23-2011
I get permission denied.
# 6  
Old 10-23-2011
Do it as root user or ask your administrator to clean it up for you.

---------- Post updated at 07:12 PM ---------- Previous update was at 07:10 PM ----------

If you already are root then
Code:
chown -R root:root [%][%]*
chmod -R 700 [%][%]*

and then
Code:
rm -rf [%][%]*

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Delete directory

Can we force delete the directories despite having files in it? Because I need to delete multiple directories which has multiple files. As of now, I'm deleting the files before deleting the directory. Can't we delete the directory with files? (3 Replies)
Discussion started by: Ram Kumar_BE
3 Replies

2. Shell Programming and Scripting

Script needed to delete to the list of files in a directory based on last created & delete them

Hi My directory structure is as below. dir1, dir2, dir3 I have the list of files to be deleted in the below path as below. /staging/retain_for_2years/Cleanup/log $ ls -lrt total 0 drwxr-xr-x 2 nobody nobody 256 Mar 01 16:15 01-MAR-2015_SPDBS2 drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: prasadn
2 Replies

3. UNIX for Dummies Questions & Answers

Extract directory name from the full directory path in UNIX using shell scripting

My input is as below : /splunk/scrubbed/rebate/IFIND.REBTE.WROC.txt /splunk/scrubbed/rebate/IFIND.REBTE.WROC.txt /splunk/scrubbed/loyal/IFIND.HELLO.WROC.txt /splunk/scrubbed/triumph/ifind.triumph.txt From the above input I want to extract the file names only . Basically I want to... (5 Replies)
Discussion started by: IshuGupta
5 Replies

4. UNIX for Dummies Questions & Answers

Cannot Delete Directory

Hello, I am trying to delete a directory but cannot. Can anyone assist? See attached. Many thanks. (6 Replies)
Discussion started by: dixer
6 Replies

5. Shell Programming and Scripting

How to delete some of the files in the directory, if the directory size limits the specified size

To find the whole size of a particular directory i use "du -sk /dirname".. but after finding the direcory's size how do i make conditions like if the size of the dir is more than 1 GB i hav to delete some of the files inside the dir (0 Replies)
Discussion started by: shaal89
0 Replies

6. Solaris

Directory cannot delete

Dear All, I have problem at T5220 server, when I enter at my server as oracle user and make directory ex. directory test then I will delete directory test with command : rm -rf, what happenned...?? that directory cannot deleted. What's wrong with my server...? Note: my server T5220 with... (3 Replies)
Discussion started by: mbah_jiman
3 Replies

7. UNIX for Dummies Questions & Answers

Want to delete a directory on a Unix-Webserver

Hi folks, I want to delete a folder on my webserver via ftp, but the server said "Operation not permitted". So I want to delete the folder via ssh - not successfull. This is what I have done and what the server said: --------------------------- rmdir views rmdir: views: Directory not... (12 Replies)
Discussion started by: Lkwjoe
12 Replies

8. Shell Programming and Scripting

using c programming in unix to delete zero-byte files in a specified directory

we were asked to make a program that deletes all zero-byte files in a psecified directory. we need to use sysytem_calls like: scandir(),chdir(),stat() and remove(). (3 Replies)
Discussion started by: sogetsu009
3 Replies

9. Solaris

Can't delete directory

Hi, I have a problem on Solaris 10 regarding deletion of files when I try to recursively delete the directory /opt/Tivoli as root, I get the following error message: rm: Unable to remove directory Tivoli/lcf/dat/1/no-del/bin/solaris2/TME: File exists rm: Unable to remove directory... (4 Replies)
Discussion started by: funksen
4 Replies

10. UNIX for Dummies Questions & Answers

delete a directory

Hi all, I have an empty directory "-ltr". How to delete it ? Thanks (4 Replies)
Discussion started by: madmat
4 Replies
Login or Register to Ask a Question