Directory cannot be deleted!!!


 
Thread Tools Search this Thread
Operating Systems Solaris Directory cannot be deleted!!!
# 1  
Old 09-06-2011
Directory cannot be deleted!!!

Friends,
I have accidently, as root, created a directory gabsf under /home. Now I cannot delete this thing, I have tried rm and rmdir, as well as explicit path name, but it is really undeleteable. Here is what ls -l says.

Code:
 
# ls -l /home
total 6
drwxr-xr-x   2 dawood   dawood       2 Sep  5 20:00 dawood
drwxr-xr-x   2 root     root           2 Sep  5 20:01 gabsf
#

and here is the output of file

Code:
 
# file /home/gabsf
/home/gabsf:    cannot open: No such file or directory
#

the output of rm -r,
# rm -r /home/gabsf
/home/gabsf: No such file or directory
#

output of rmdir -r command

Code:
 
# rmdir -r /home/gabsf
rmdir: illegal option -- r
Usage: rmdir [-ps] dirname ...
#

Looking forward to your wonderful replies.
Thanks!
# 2  
Old 09-06-2011
Try deleting it by inode:

Code:
$ ls -id gabsf
493909 gabsf
$ find . -inum 493909 | xargs rm -r

This User Gave Thanks to verdepollo For This Post:
# 3  
Old 09-06-2011
That might not work with xargs, in which case use -exec:

Code:
# find . -inum 4044889145 -exec rm -r {} \;

edit:

Actually, using -I it works Smilie

Code:
# find . -inum 4044889145 | xargs -I{} rm -r {}


Last edited by Scott; 09-06-2011 at 01:32 PM.. Reason: correction
This User Gave Thanks to Scott For This Post:
# 4  
Old 09-08-2011
"rm -rf /home/gabsf" should work, I guess.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Emergency UNIX and Linux Support

Directory got deleted

One of my directory code where i have stored all my scripts have disappeared . I have no idea on how it got deleted.Could someone pls help me to track-back on what would have happened? I left the office yesterday and today when i just logged in to work with the scripts I could not find the... (13 Replies)
Discussion started by: michaelrozar17
13 Replies

2. UNIX for Advanced & Expert Users

recovering a deleted directory

I accidentally deleted a very important directory today with this rm -r. What would be the recommended way to recover my directory? After a lot of googleing I have seen these choices. Could I get some recommendations please? Testdisk Photorec- Doesn't recover file name like I would like. ... (10 Replies)
Discussion started by: cokedude
10 Replies

3. Shell Programming and Scripting

Last column is getting deleted

Hi, I am having a problem in the below code:-. $ cat x.csv baseball,NULL,8798765,Most played,0,5,12367,NULL,NULL,98,67,Reason is not sufficient baseball,NULL,8928192,Most played,0,4,76893,NULL,RAW,54,78,Reason is not sufficient baseball,NULL,5678945,Most played,9,2,1,6,NULL,6789,123,Reason... (4 Replies)
Discussion started by: scripter12
4 Replies

4. UNIX for Advanced & Expert Users

deleted all files - rm *

Hi All, I am using Fedora Core and Windows Xp. I deleted all the files from root directory. When i am trying to restart the computer it showing some grub > prompt. What i will do ? I have lots of data in XP OS. Please help me i used # rm * (8 Replies)
Discussion started by: pritish.sas
8 Replies

5. UNIX for Dummies Questions & Answers

deleted /usr

I accidentally deleted the usr on/. How can I start the server again? (5 Replies)
Discussion started by: rahmantanko
5 Replies

6. Solaris

Directory should not be deleted, But the contents can be

Hi Guys, I have an user's home directory set to /home/A And A contains the following directories B & C Is there some way in solaris by which i can prevent the directories B and C from getting deleted by the user but the contents of the directories B & C can be deleted ? Also i have... (2 Replies)
Discussion started by: localhost
2 Replies

7. UNIX for Dummies Questions & Answers

how to know who has deleted the file.

Hi, We have a file which needs supper user previleges to delete. There are 10 users having super user preveleges. Some times back that file got deleted. How to know who has deleted that file? (6 Replies)
Discussion started by: siba.s.nayak
6 Replies

8. Shell Programming and Scripting

files of size 0 need to be deleted inside a directory

Hiiii, I have written a script which takes backup of some log files. let say the backuplocation is --- /abc/backuplocation -rw-r--r-- 1 webmut2 spgroup 0 Jan 27 02:41 ansrpt23994.log -rw-r--r-- 1 webmut2 spgroup 0 Jan 27 02:41 ansrpt3601.log -rw-r--r-- 1... (2 Replies)
Discussion started by: namishtiwari
2 Replies

9. Solaris

Deleted Lost+Found directory

If you delete your lost & found directory, how do you get it back, just do a mkdir? (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

10. UNIX for Dummies Questions & Answers

Deleted /etc/passwd

Hi all, While playing with my LINUX machine i accidently deleted a file name called /etc/passwd . Even though the system is booted am unable to get the login prompt. Is there any remedy for this problem.:( (5 Replies)
Discussion started by: cyno
5 Replies
Login or Register to Ask a Question