Please help.
We mistakently deleted a directory that had been exported (while it was still exported). However, I have re-instated the exported directoy on the server but this action appears to have corrupted some directories on the client and it would not allow these directories to be deleted or re-created. Essentially we now have phanton directories on the client. They are listed with ls but ls -lrt.
ls -al | cat -ev
ls: 0653-341 The file ./develop does not exist.
ls: 0653-341 The file ./mikea does not exist.
ls: 0653-341 The file ./mikeh does not exist.
ls: 0653-341 The file ./johnl does not exist.
ls: 0653-341 The file ./kenp does not exist.
ls: 0653-341 The file ./heathera does not exist.
When I run rm to remove the directories I get " A file, file system or message queue is no longer available."
cd to any of the listed directories produces " 0403-036 The specified directory is not valid."
I found a similar problem in thread52-675972 but the suggestions given there have not worked for me.
ls -i shows the directories with the following inode numbers
329736 johnl
329730 mikea
329761 heathera
329738 kenp
329734 mikeh
In thread52-675972, a similar command to
"find . -inum 329730 -exec rm {} \;" resolved the problem by deleting the phantom file. However this fails with
find: 0652-019 The status on ./develop is not valid.
find: 0652-019 The status on ./mikea is not valid.
find: 0652-019 The status on ./mikeh is not valid.
find: 0652-019 The status on ./johnl is not valid.
find: 0652-019 The status on ./kenp is not valid.
find: 0652-019 The status on ./heathera is not valid.
I can`t create other directories or files with the same names because it complains that the files already exist.
Would much appreciate your assistance with this issue
Thanks