deleting nfs directories...


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers deleting nfs directories...
# 1  
Old 01-30-2003
deleting nfs directories...

Hi

I have Solaris 8 in several Ultras and they share some directories between each others using nfs.
(you know, one shares the other mounts the remote directory into a local...).
The problem is that one guy (me) deleted a shared directory and now the computer that was mounting it remotely is complaining about the missing remote directory.
I really dont need that dir but when I want to remove the mount point it says"Directory is a mount point or in use" and stuff like that.

My question: "is there a way to FORCE a dir delete without taking care if it was a mount point for a nfs shared directory?" if yes--- how?

Thanks in advance to all the unix community.

piltrafa
# 2  
Old 01-30-2003
If the directory (let's call it /home/mountthis) on system A is mounted remotely to system B on /Amount, then you only need to do a umount /Amount on system B (and remove the /etc/vfstab entry which mounts it on boot).

If it's mounted by automountd, then look to /etc/auto_* files to find the mount.

Post back if you have problems.
# 3  
Old 01-30-2003
can umount cannot delete dir...

RMT:
thanks for your reply. As you wrote that is the normal procedure to unmount a remote resource and, in fact, Im able to do that.
The problem is that, after unmounted, I cannot delete the mountpoint, it says "Unable to remove directory /example/: Device busy".

I look the mnttab file and the line is not there (cause I unmounted it!!), the dir is empty ... and so on..


Thanks

Piltrafa
# 4  
Old 01-30-2003
Have you run fuser /example and found what process is still considered 'using' it? Normally it's your own process (Duh! I always do that!) that is cd'ed into the directory.

If fuser does show any processes using /example, then you would need to kill off those processes (users) - if it's a system process, you might try a kill -HUP to get it to reread configuration files (ie automountd)
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Deleting directories

I want to delete directories which are empty and directories which are 2 level deep. example: /app/data/logs/G07696115/G07696115 So if a same directory is there inside G07696115 with the same name G07696115, i want to find and delete that alone(Make sure you do not touch directory any... (4 Replies)
Discussion started by: gtm004
4 Replies

2. Shell Programming and Scripting

deleting files in sub directories!

Hello out there, I want to setup a crontab feature to remove temporary pdf files from sub directories that are older than 30 days. I want to presevere the directory structer though. I got this far for a command. Will this remove the pdf's in subdirectories or just directly under the pdf folder? If... (6 Replies)
Discussion started by: vsekvsek
6 Replies

3. Shell Programming and Scripting

Deleting empty directories using find

Hello, I'm submitting this thread, because I was looking a way to delete empty directories using find and I found a thread from 2007 that helped me. I have worked from that threat, but I found that the command sent would analyze original directory and may delete it to. I have come up with expanded... (3 Replies)
Discussion started by: lramirev
3 Replies

4. UNIX for Dummies Questions & Answers

deleting older directories

how can we delete directories older than 6 months (9 Replies)
Discussion started by: dnat
9 Replies

5. Filesystems, Disks and Memory

deleting directories from a list

I have a need to remove a bunch of old user home directories from my OS X server. Using BASH and ls, I've been able to redirect the directory structure to a file with 'ls -l >userslist'. I've then manually sifted through the list for directories whos owner doesn't match the a given directory name... (1 Reply)
Discussion started by: amacgeek
1 Replies

6. UNIX for Dummies Questions & Answers

deleting all the sub directories

hello., i am creating a certain sub directories as apart of my requirement, and then later on i have to delete all those sub directories.. ____________________________________________________ DIR1="/home/pavi/cvs/20071426/TEMP" echo " DIR1 is : " $DESTDIR1 echo... (2 Replies)
Discussion started by: pavan_test
2 Replies

7. UNIX for Dummies Questions & Answers

What/How to check before deleting files and directories

Hi there, I have a some directories containing web files that are old, and I need to remove them. I know that there might be sym links and hyperlinks pointing to these old directories. If that's the case, then I'll have to fix the links before deleting these old directories to avoid broken... (4 Replies)
Discussion started by: yvochan
4 Replies

8. UNIX for Dummies Questions & Answers

Deleting string from file of same name within several directories

I searched the forum, but I don't think I was able to find exactly what I'm looking for. Is there a command in shell where I can delete a particular string from every file it occurs in (where the file is named the same, but sits in different directories)? Example: Within the directory I am... (5 Replies)
Discussion started by: halo969
5 Replies

9. UNIX for Dummies Questions & Answers

Recursively deleting directories

Say I have a directory call test, and several directories nested in it, and several directories nested in them. And I want to remove all directories within "test" and its subdirectories that have the name "cvs", how can I do this? I tried rm -r cvs, but that only removed the top level direcotry... (4 Replies)
Discussion started by: mikeshank
4 Replies

10. UNIX for Dummies Questions & Answers

Deleting unamed directories

SCO 5.06 Someone broke into my NT box (grrr) and somehow, they created a bunch of directories w/ subdirectories that appear un-named. I mounted the drive on my unix box using NFS and when I listed the directory in unix, Im getting a bunch of ascii charachters. drwxr-xr-x 8 root group... (4 Replies)
Discussion started by: gseyforth
4 Replies
Login or Register to Ask a Question