What if the filename has a ‘/’ in it? These files really are special cases, and can only be
created by buggy kernel code (typically by implementations of NFS that
don’t filter out illegal characters
Recall that Unix directories are simply pairs of filenames and inode numbers. A directory essentially contains information like this: filename inode file1 12345
Theoretically, ‘/’ and ‘\0’ are the only two characters
that cannot appear in a filename - ‘/’ because it’s used to separate directories
and files, and ‘\0’ because
Unfortunately some implementations of NFS will blithely create filenames with embedded slashes in response to requests from remote machines. For instance, this could happen when someone on a Mac or other non-Unix machine decides to create a remote NFS file on your Unix machine with the date in the filename. Your Unix directory then has this in it: filename inode 91/02/07 12357 No amount of messing around with ‘find’ or ‘rm’ as described above will delete this file, since those utilities and all other Unix programs, are forced to interpret the ‘/’ in the normal way. Any ordinary program will eventually try to do unlink(“91/02/07”), which as far as the kernel is concerned means “unlink the file 07 in the subdirectory 02 of directory 91”, but that’s not what we have - we have a FILE named “91/02/07” in the current directory. This is a subtle but crucial distinction. What can you do in this case? The first thing to try is
to return to the Mac that created this crummy entry, and see if you can
convince it and your local NFS
If that doesn’t work or isn’t possible, you’ll need help from your system manager, who will have to try the one of the following. Use “ls -i” to find the inode number of this bogus file, then unmount the file system and use “clri” to clear the inode, and “fsck” the file system with your fingers crossed. This destroys the information in the file. If you want to keep it, you can try: create a new directory in the same parent directory as the one containing the bad file name; move everything you can (i.e. everything but the file with the bad name) from the old directory to the new one; do “ls -id” on the directory containing the file with the bad name to get its inumber; umount the file system; “clri” the directory containing the file with the bad name; “fsck” the file system. Then, to find the file, remount the file system; rename
the directory you created to have the name of the old directory (since
the old directory should have been
Alternatively, you can patch the directory the hard way by crawling around in the raw file system. Use “fsdb”, if you have it. Relevance Read:
Return to : - Unix System Administration Hints and Tips (c) www.gotothings.com All material on this site is Copyright.
|