PDA

View Full Version : Cannot access root from Terminal


b1hgaa88
02-28-2002, 06:03 PM
My system was showing signs of slowing down so I ran Norton First Aid and then Speed Disk to defragment the drive (actually I did this on all my five partitions, including my "System10" partition). I finished up by rebuilding all desktops with DiskWarrior.

However, when I rebooted into Mac OS 10.1.3 it began the whole Apple configure process, which I went through and then found that I had lost ALL my preferences and had to rebuild everything from scratch, including the dock, re-enter codes to some software etc. I then noticed there were two users to my name (I am a single user on an iMac, so am SysOp and single user only). I deleted one user - which turned out to be the wrong one - so I tried reconstituting it by going to root and changing the name from "Jfwoods deleted" to "jfwoods". I did recapture my dock (that i had earlier rebuilt).

O.K. So I thought I'd just check that my tcsh config files were still O.K. by looking for the "aliases.mine" file. This is what happened:

[localhost:~] jfwoods% sudo find / -name aliases.mine
Password:
jfwoods is not in the sudoers file. This incident will be reported.
[localhost:~] jfwoods% /etc/mail/sendmail.cf: line 81: fileclass: cannot open /etc/mail/local-host-names: Group writable directory

So then I looked locally as follows:

[localhost:~] jfwoods% find / -name aliases.mine
find: /.Trashes: Permission denied

find: /private/etc/X11/xdm/authdir: Permission denied
find: /private/ ## many other files Permission denied

find: /System/Library/UserTemplate/Dutch.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/ ## many other files Permission denied

/Users/jfwoods/Library/init/tcsh/aliases.mine

find: /Users/julianwo/Desktop/.DS_Store: Permission denied
find: /Users/julianwo/ ## many other files Permission denied

Since I didn't have the requisite permissions here I thought I'd try a "su" and see what happened: O.K.

[localhost:~] jfwoods% su
su: you are not listed in the correct secondary group (wheel) to su root.

SO ? now what? What does this mean, and how do I recover my "su" and "sudo" commands (and generally recover from this debacle)? I suspect DiskWarrior to be the culprit, but what do you think?

All and any help would be much appreciated. Thanks

mervTormel
02-28-2002, 06:15 PM
i don't suspect disk warrior, but you didn't enumerate any problems encountered in your disk maintenance. were there any?

i do suspect that you added new user 'jfwoods' during the 'apple welcome' process (which you could have quit) and that 'jfwoods' has a new user id and perhaps has no admin privs.

then you deleted the wrong user, the admin 'jfwoods' ? how did you accomplish that?

there would have to be something different about the two names. capital J vs. lowercase j ?

are you at all familiar with Netinfo Manager?

I would stop deleting things right away. Your user 'jfwoods deleted' may be your original account. Leave it.

sao
02-28-2002, 09:48 PM
How did you deleted the admin 'jwoods' account ?

Cheers...

hschickel
02-28-2002, 10:25 PM
I agree with merv. You've created another user w/o admin privileges. Worse, by deleting your primary user as root you've most likely fried your netinfo database (my assumption is that you deleted as root as it would be impossible to delete the only admin user otherwise.)

Nuclear Method to rebuild:

1. Login as root.
2. Rename the folder containing your real user account: username (use your user name). It sounds like you already did this. NOTE: a user short name is 8 lowercase letters or numbers and I believe it must start with a letter.
3. Rename the folder containing the dummy account username.dummy or something to that effect.
4. Boot into single user mode (<Command> s at startup).
5. Run fsck -y until no changes are made.
6. Mount the filesystem read/write with mount -uw /.
7. cd /private/var/db - change directory
8. rm .AppleSetupDone - remove this file and Apple Setup will run again. This will rebuild your netinfo database when you login again if it does not exist (and it won't after step 10).
9. cd netinfo - change directory
10. rm -rf local.nidb - deletes your netinfo database
11. exit or reboot
12. At the Apple setup screen re-enter your data. Be sure to use the same data (especially the shortname) as the original user.
13. Logout
14. Login

You should now have your account back. Please note that this will destroy any fink or other special system created users. There is probably a way to get your netinfo db back to normal using the root user. If for some reason you don't want to go nuclear please wait for someone to post on that method.

See this link for my similar experience. (http://forums.macosxhints.com/showthread.php?s=&threadid=1267)

Good luck,
Hugh

b1hgaa88
03-01-2002, 12:02 AM
Thanks all, and especially to hschickel. Your advice was a goldmine. I now seem to have my original home directory back, except of course that I will have to re-stock my Dock (and no doubt a few other things). I now have my "sudo" thing back again too.

My "username.dummy" folder is still in Users. Should I (can I) now dump it to save space or is it best just left alone?

The only mystery is that my Internet Explorer cannot access the Web (I am using Netscape for this). I keep getting a dialogue saying "The specified server cannot be found." Is there anything I can do about this (I have checked the Prefs already)? Or should I just dump it and re-install (as you see I am getting mighty nervous at doing anything hasty these days).

And mervTormel, yes I ditched the original folder from root.

And hschickel you seem to suggest I might have trouble with fink. Haven't tried it yet, nor booted up X Darwin/window manager. I am holding my breath until tomorrow (I may be back ;-)

In the meantime thanks again

hschickel
03-01-2002, 01:28 AM
I'm glad it worked out. I'm sorry you had to go with the big guns. The fact that you still had access to the root account meant there were options. I was hoping to learn a better way myself :) .

You may delete username.dummy now. We kept that just in case it was somehow the original. sudo rm -r /Users/username.dummy from the terminal to remove the account (Use your own path and username.)

I'm not sure about IE. Try this:
1. Quit IE
2. Move ~/Library/Preferences/Explorer to the desktop
3. Relaunch IE.
If it works you have a preferences problem. Either trash the folder outright or add back the individual pieces until the problem resurfaces. This is the preference that should be trashed.

On Fink; Fink per se will give you no problems. Certain packages create their own users in Netinfo though. With the new db these users will no longer exist. I'm not sure what will happen to the apps in those cases. This will be a problem if you ever gave fink permission to create new users. MySQL for one does this. I don't believe just vanilla fink with a window manager has extra users (it does not on my install but I tinker a lot and my systems are not indicative of anything.)

All of this shows why its a good idea to back up netinfo. There is a command to do it in NetInfo Manager but it bombs on every machine I have. I've never tried to run it as root though... perhaps thats the answer. In any case I back it up this way:
1. cd /var/db/netinfo - change directory to the netinfo directory
2. sudo cp -R local.nidb local.nibak - copies the netinfo directory to a backup as root.

***Please note: I've never restored from this so I really don't know if its doing me any good or not. You can also use nidump and niload to backup and restore individual directories in netinfo. I can personally attest that this method works fine. See the man pages. I would suggest enabling root and creating another admin user before going down this road. You may find (as I did - see the earlier link) that you no longer have access to your system with your main user if things don't go right.

Hugh

sao
03-01-2002, 03:43 AM
If you want to backup the netinfo database you can run the command:

sudo gnutar czf netinfo_backup.tgz /var/db/netinfo/local.nidb

that will back it up into a file called netinfo_backup.tgz.

If you installed a package with fink which has a dependency on the 'passwd' package, then 'passwd' sets up a couple of extra users on your system in the event that you someday decide to install packages that require these extra users.

News Server
MySQL Database Server
PostgreSQL Database
Game Files Owner
Canna Japanese Input
Postfix Mail Transfer Agent

Fink will only give you problems if you install the packages listed above with fink and you don't have the extra users, all other packages it will work fine.

In case you need them, don't panic, you can always install the extra users again.

Cheers...

hschickel
03-01-2002, 04:10 AM
Sao,

Could you do an nidump on those users and post it somewhere? Or would it be easier to simply reinstall the password package?

Thanks,
Hugh

sao
03-01-2002, 04:31 AM
I would reinstall the passwd package and accept the installation of the new users. If it works, then, that will be the easy way.

I will test it now, wait for a while.

Cheers...

b1hgaa88
03-01-2002, 10:47 AM
Next a.m.

Hugh - tried your suggestion with Explorer but it didn't work. Still getting the same result.

Also, I note I am getting funny results on other programs. My Mail program has inherited three more boxes entitled "Delivered" "Delivered 3592" and "Deleted". and my delete button is grayed out (can't delete anything). It also asked me whether I wanted to import other mail boxes but then went into a spinning cursor loop until I force quit.

Also my Word 2001 program can only save as documents as Word 97-98 and then opens them as "read only". Something fishy here. It also seems to take longer to boot up.

Any ideas?

sao
03-01-2002, 11:24 AM
hschickel,

It works with 'fink rebuild passwd'

The package will ask again about adding the new users:

-----------------------------
The following user entries will be added to your NetInfo database:

news:*:250:250::0:0:News Server:/:/dev/null
mysql:*:251:251::0:0:MySQL Database Server:/:/dev/null
pgsql:*:252:252::0:0:PostgreSQL Database Server:/:/dev/null
games:*:253:253::0:0:Game Files Owner:/:/dev/null
canna:*:254:254::0:0:Canna Japanese Input Server:/:/dev/null
postfix:*:255:255::0:0:Postfix Mail Transfer Agent:/sw/var/spool/postfix:/dev/null

The following group entries will be added to your NetInfo database:
news:*:250:
mysql:*:251:
pgsql:*:252:
games:*:253:
canna:*:254:
postfix:*:255:
maildrop:*:256:

Existing entries with these names or numbers will be overwritten or
otherwise affected by this. On the other hand, some Fink packages will
not work unless these entries are in the NetInfo database. You can make
adjustments to the files /sw/etc/passwd-fink and
/sw/etc/group-fink now (from another window), then say yes here. Or
you can say no here and add the users and groups manually (e.g. on your
central NetInfo server). If you don't know what all of this is about,
just say yes.
Do you want to continue? [Y/n]
------------------------------

Cheers...

hschickel
03-01-2002, 12:37 PM
Sao - thanks.

B1 - you seems to have done damage to more than just the netinfo db. The Office problem can most likely be fixed by booting into 9, trashing the office prefs and rebuilding the desktop with techtool lite (free from version tracker). That's an old bug that I have not seen in a while. The explorer issue leads me again to believe you have deeper problems. Will it run as root? If you create another admin user will it run for him? If you create a staff user will it run for him?

Hugh

mervTormel
03-01-2002, 12:58 PM
i love the smell of toast in the morning.

not to make light of your predicament, b1, but, you could be patching this up for a long time, and some problems may be very hard to diagnose. your install may no longer have much integrity. i wouldn't trust it with my data.

at this point you are our whipping boy, and we're using your predicament as a play box, and further tooling around could make more grevious holes in your rig, frustrate you and give you a bad (worse) experience.

what say you save your user data, clean install, and start again, with a slower approach to root activities?

i think several hours of reinstall, recovering data, etc would be well spent over what you may have to look forward to in continuing fractures.

"Charlie don't surf."
--Lt. Colonel Bill Kilgore

b1hgaa88
03-01-2002, 02:18 PM
Thanks again for the suggestions. You may be right Merv that I should re-install. For example, I see that my X Darwin boots O.K. but not with Window Maker (although I seem to have all the WM files). I have a _xinitrc file in my home directory, but no .xinitrc file. Maybe that's part of this problem? Shouldn't I have a .xinitrc file somewhere? My _xinitrc file reads:

# Window Maker default X session startup script

PATH="$PATH:/sw/bin"

# If you login from xdm, uncomment this to make error messages appear
# in the console window.
#
# tail -f /Users/jfwoods/.xsession-errors > /dev/console &

exec wmaker


Don't mind being the wipping boy as long as it wips me into shape ;-)

b1hgaa88
03-01-2002, 02:38 PM
Sao - Now I'm really getting discouraged (newcomer that I am!). Couldn't check whether Explorer will run as root. I tried logging in as root but "root" doesn't take my password anymore (simply gives me the "shudders"!!). How can I log in as root then?

I note that when I check my Users pane only one user is listed there as follows:

Name: Julian F. Woods
Kind: Admin

This seems to suggest that I myself am 'root'. But when I do a find in the Terminal I still have to give my password to get into "root" (which works fine).

Cannot figure this out at all.

mervTormel
03-01-2002, 02:46 PM
sudo and su in shell take _your_ user password, not the root password.

you users pane will not list the root user.

are you using the same root password as was assigned to the first user created in your very first 'apple welcome' setup? the very first user and root share the same password. is that right?

anyone know of a good way to change the root password? i think it has to flow back into the netinfodb, so chpass may not be the key, here.

b1hgaa88
03-01-2002, 03:34 PM
This is getting weirder and weirder. I find that, although typing a "sudo" command I can use my password O.K., when I type a "su" command it will not accept my password.

Could you please give me some pointers about re-installing. I have your advice merv about backing up my Users directory, but I'm really wondering whether my Users director is also part of the problem.

Anyway (since I'm a newbie at this), I presume I can just take my Mac OS 10.1 CD and re-install over my existing stuff (I seem to have read you can do this somewhere). Then I would have to re-install XFree86. fink, window maker and other apps that seem to need to be close to the system. Is that more or less how I proceed from here?

Thanks

b1hgaa88
03-01-2002, 03:38 PM
Merv thanks - just seen your post.

Well if sudo and su take the User's pw how come su does NOT accept my user's pw in the shell?

As I said - gets weirder and weirder

mervTormel
03-01-2002, 04:30 PM
yeah, that's a weirdo. su does some kerberos authorization first, i think, and if that fails, tries to get pw from /etc/passwd, which fails (?). so, more evidence that a reinstall is the ticket, perhaps.

a downgrade/reinstall is a walk in the park, provided you have one user, the original user you setup. i will outline that case first...

what i did in the distant, foggy past, when i needed to downgrade the OS rev to start again, was to delete every last mother-loving thing in the root dir, except the
/Users directory.

then, i installed OSX 10.1 and setup 'apple welcome' with the one user i knew i had to, the original defined user, the precious first admin. i tested that i had the same user id (501) after login and kicked things around a little (sudo, su), then i started up the software update whoopee machine until no more updates needed applying.

now, in your case, you have to take care of the user accounts you've created (?) you may need to cleanup and consolidate your user's data (?), and get user id and group info with the following commands. This may help you map user id's and groups back together. In other words, you'll have a bucket of users remaining in /Users/ (that already have uid and gid properties in their files) and a new netinfo database without those users. You'll want to re-marry users/groups to directories and their files.

As your main user admin account (of course, yer output may look different):

% id
uid=501(merv) gid=20(staff) groups=20(staff), 0(wheel), 80(admin)


% nidump passwd .
nobody:*:-2:-2::0:0:Unprivileged User:/dev/null:/dev/null
root:xxxxxxxx:0:0::0:0:System Administrator:/var/root:/bin/tcsh
daemon:*:1:1::0:0:System Services:/var/root:/dev/null
unknown:*:99:99::0:0:Unknown User:/dev/null:/dev/null
www:*:70:70::0:0:World Wide Web Server:/Library/WebServer:/dev/null
merv:xxxxxxxx:501:20::0:0:merv:/Users/merv:/bin/tcsh

Following are the fink added accts:

news:*:250:250::0:0:News Server:/:/dev/null
mysql:*:251:251::0:0:MySQL Database Server:/:/dev/null
pgsql:*:252:252::0:0:PostgreSQL Database Server:/:/dev/null
games:*:253:253::0:0:Game Files Owner:/:/dev/null
canna:*:254:254::0:0:Canna Japanese Input Server:/:/dev/null
postfix:*:255:255::0:0:blah:/sw/var/spool/postfix:/dev/null

Template for passwd dump:
shortUserName:pw:uid:gid::0:0:full name:homeDir:shell


% nidump group .
nobody:*:-2:
nogroup:*:-1:
wheel:*:0:merv
daemon:*:1:root
kmem:*:2:root
sys:*:3:root
tty:*:4:root
operator:*:5:root
mail:*:6:
bin:*:7:
staff:*:20:root,merv
guest:*:31:root
utmp:*:45:
uucp:*:66:
dialer:*:68:
network:*:69:
www:*:70:
admin:*:80:root,merv
unknown:*:99:
news:*:250:
mysql:*:251:
pgsql:*:252:
games:*:253:
canna:*:254:
postfix:*:255:
maildrop:*:256:

Template for group dump:
GroupName:pw:gid:user1,user2,...

you'll want to capture that stuff to files for
post-downgrade reference, like so:

cd
nidump passwd . > mynipasswds
nidump group . > mynigroups

I realize there may be more questions, but digest that first so you can decide how to proceed. then, come up with a good plan for going forward tiny steps at a time, and test test test.

sanity check from anybody here, please?

does any of that post install netinfo noodling float back into such things as users control panel?

b1hgaa88
03-01-2002, 06:15 PM
Yikes! Carrrrrramba!!!!

In the land of the blind the one-eyed man is KING. Oh yes!!

Here is the blind man's attempt at doing what you did:

[localhost:~] jfwoods% su
Password:
Sorry

(This is what I got when I tried the "su"

Now for your stuff:

[localhost:~] jfwoods% id
uid=501(jfwoods) gid=20(staff) groups=20(staff), 0(wheel), 80(admin)
[localhost:~] jfwoods% nidump passwd
usage: nidump [-r] [-T timeout] {directory | format} [-t] domain
known formats:
aliases
bootptab
bootparams
ethers
exports
fstab
group
hosts
networks
passwd
printcap
protocols
resolv.conf
rpc
services
mountmaps
[localhost:~] jfwoods% nidump group
usage: nidump [-r] [-T timeout] {directory | format} [-t] domain
known formats:
aliases
bootptab
bootparams
ethers
exports
fstab
group
hosts
networks
passwd
printcap
protocols
resolv.conf
rpc
services
mountmaps
[localhost:~] jfwoods% cd
[localhost:~] jfwoods% nidump passwd . > mynipasswds
[localhost:~] jfwoods% nidump group . > mynigroups
[localhost:~] jfwoods%

This looks a lot different from yours, but can't say (as a blind man) that I have digested it yet.

What does it look like to you? (don't like the look of that "timeout" thing)

b1hgaa88
03-01-2002, 06:24 PM
My apologies. I didn't see the .'s (periods). Here is the real mcoy:

[localhost:~] jfwoods% nidump passwd .
nobody:*:-2:-2::0:0:Unprivileged User:/dev/null:/dev/null
root:*:0:0::0:0:System Administrator:/var/root:/bin/tcsh
daemon:*:1:1::0:0:System Services:/var/root:/dev/null
unknown:*:99:99::0:0:Unknown User:/dev/null:/dev/null
www:*:70:70::0:0:World Wide Web Server:/Library/WebServer:/dev/null
jfwoods:4V689D.LKl8RE:501:20::0:0:Julian F. Woods:/Users/jfwoods:/bin/tcsh
[localhost:~] jfwoods% nidump group .
nobody:*:-2:
nogroup:*:-1:
wheel:*:0:jfwoods
daemon:*:1:root
kmem:*:2:root
sys:*:3:root
tty:*:4:root
operator:*:5:root
mail:*:6:
bin:*:7:
staff:*:20:root
guest:*:31:root
utmp:*:45:
uucp:*:66:
dialer:*:68:
network:*:69:
www:*:70:
admin:*:80:root,jfwoods
unknown:*:99:
[localhost:~] jfwoods% cd
[localhost:~] jfwoods% nidump passwd . > mynipasswds
[localhost:~] jfwoods% nidump group . > mynigroups
[localhost:~] jfwoods%

Teach me to be more careful in future!

mervTormel
03-01-2002, 07:08 PM
that's...

nidump what dot

nidump passwd . # <- note the dot. see the dot? the dot is imperative.

again?...

mervTormel
03-01-2002, 07:31 PM
our posts collieded. hopefully, that's the last train wreck.

why don't you edit that encrypted password out of that there post:

jfwoods:gobbledygook:501:

--

looks like you never enabled root which is why you can't login as root.

so do that now for practice, and do it again after the reinstall.

netinfo mgr, menu Domain->Security->Enable Root User

--

that looks like you haven't added any users, or are there user directories in /Users, and you don't have nidb entries for them?

b1hgaa88
03-01-2002, 09:58 PM
Thanks for your prompt response to my oversight on that all-important .

O.K. this is what happened. When I went to "Enable root password" I got an "Alert" saying:

"The root password is currently blank. Please set a non-trivial root password for this machine."

So I gave it the same pw I use for my user account (yes, i know its probably not kosher but this is a "home" machine that only I use), as I had it before this holy kafuffle (?).

No, haven't added any users. I have just one in my Users directory, plus the old one which I called "julianwo.dummy" (which is now moribund). I should get rid of it I guess but haven't had time yet.

So now I will try and see if this root thing works. Wish me luck!

Until tomorrow

PS. What did you mean by encrypted pw? If you are talking of the b1hgaa88 that's a username I was given for something else and I just signed on with it - no significance
really.

hschickel
03-02-2002, 04:41 AM
Some comments:

1. I too believe a reinstall is in order - your system is exhibiting a lot of flakiness and you will probably never fix it right or know if its secure. (Thank you merv for that earlier lesson :) )
2. merv, your method works fine. I would add the following:
-save the following folders: /Users, /System Folder (if you have Classic on the boot volume), /Applications (Mac OS 9) (if you have Classic on the boot volume), /Documents (if you have Classic on the boot volume), and /Applications (mv this to Applications.old if you want to save any new apps that you added - you'll add the new ones back to the Applications folder after the reinstall.)
-iif may be easier to move those folders to a backup location and then wipe the drive; add those folders back after the wipe
-if you're worried about your current users being corrupted somehow start with a new admin user and add back the old user with all of your prefs when you get the new user up and running (mv /Users to /Users.old before the reinstall.)
3. Good luck.

Hugh

hschickel
03-02-2002, 05:01 AM
Sao,

Thanks - fink rebuild passwd worked perfectly.

Hugh

b1hgaa88
03-02-2002, 12:23 PM
This is a fascinating learning exercise for me (whatever my problem). Thanks again all.

My root is now working fine since I enabled the (previously non-existent) new password. How the original password got deleted is a total mystery.

I've also figured out why my Window Maker for X Darwin did not boot up. I had previously used Tinker Tool to make visible my hidden files so I could see things better in the Finder. However, what that did was to change all the "dot" files in my User's directory to "_" files (.xinitrc changed to _xinitrc etc.). I had to change them back from the Terminal (with mv command) - changing the Tinker Tool setting didn't work for some reason. Well, then everything came to life.

I don't know whether this completely solves my system-wide problems. It has had no effect on my Internet Explorer (still getting that 'cannot access server' dialogue) and the delete button on my Mail is not working. However, I wonder whether the applications themselves might be at fault. I looked on the Microsoft site for an "X" version of their Explorer but they only have a Classic version. Did Microsoft only supply an X-version to apple for the System CD, or what?

Anyway, my first idea would be to re-install these two programs and to see whether that fixes the problem (obviously trying to avoid a complete re-install if at all possible). However, I note that "Schmoo" has a script which puts all Mac OS X items into the trash at http://www.macosxhints.com/article.php?story=2001053101460766

A bit old perhaps (for OS 10.1.3)

b1hgaa88
03-02-2002, 03:27 PM
Sorry to butt in here once again, but I'm a bit worried about all those files that begin with an underbar (and which I believe should start with a dot (i.e. period). I did a search on my system X partition and it came up with over a hundred, as follows:

[localhost:~] jfwoods% find . -name '_*'
find: ./.Trash: Permission denied
./_tcsh_history
./_xinitrc.old.Feb17.11:46:52
./Desktop/.FBCLockFolder/_FBCSemaphoreFile
./Desktop/_DS_Store
./Desktop/_FBCIndex
./Desktop/QuickenDataStuff/.FBCLockFolder/_FBCSemaphoreFile
./Desktop/QuickenDataStuff/_DS_Store
./Desktop/QuickenDataStuff/_FBCIndex
./Desktop/QuickenDataStuff/Backup Folder/_DS_Store
./Desktop/QuickenDataStuff/Old Quicken Data/_DS_Store
./Desktop/Remove Office/.FBCLockFolder/_FBCSemaphoreFile
./Desktop/Remove Office/_FBCIndex
./Desktop/WindowMaker-0.80.0/.FBCLockFolder/_FBCSemaphoreFile
./Desktop/WindowMaker-0.80.0/_FBCIndex
./Documents/.FBCLockFolder/_FBCSemaphoreFile
./Documents/_DS_Store
./Documents/_FBCIndex
./Documents/Acrobat User Data/.FBCLockFolder/_FBCSemaphoreFile
./Documents/Acrobat User Data/_DS_Store
./Documents/Acrobat User Data/_FBCIndex
./Documents/Acrobat User Data/Legal/_DS_Store
./Documents/iTunes/.FBCLockFolder/_FBCSemaphoreFile
./Documents/iTunes/_DS_Store
./Documents/iTunes/_FBCIndex
./Documents/iTunes/iTunes Music/_DS_Store
./Documents/MacGimp Manuals etc./.FBCLockFolder/_FBCSemaphoreFile
./Documents/MacGimp Manuals etc./_DS_Store
./Documents/MacGimp Manuals etc./_FBCIndex
./Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/_DS_Store
./Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/_DS_Store
./Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/Resources/_DS_Store
./Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/Resources/ReadMe.rtfd/_typeAttributes.dict
./Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/Resources/Welcome.rtfd/_typeAttributes.dict
./Documents/Microsoft User Data/.FBCLockFolder/_FBCSemaphoreFile
./Documents/Microsoft User Data/_FBCIndex
./GNUstep/_DS_Store
./GNUstep/Library/WindowMaker/_DS_Store
./Library/_DS_Store
./Library/Addresses/_DS_Store
./Library/Application Support/Aladdin/StuffIt Express PE/StuffIt Express E-Mail Scripts/_DS_Store
./Library/Application Support/LaunchBar/_license
./Library/Audio/_DS_Store
./Library/Caches/_ApplePrefPanesCache
./Library/Caches/_FODB_Classic
./Library/Caches/_FODB_User
./Library/Favorites/_DS_Store
./Library/init/_DS_Store
./Library/init/tcsh/_DS_Store
./Library/iTunes/_DS_Store
./Library/iTunes/iTunes Plug-ins/_DS_Store
./Library/Mail/Mailboxes/Deleted Messages.mbox/_lock
find: ./Library/Mail/Mailboxes/Delivered 3592.mbox: Permission denied
./Library/Mail/Mailboxes/INBOX.mbox/_lock
./Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/_DS_Store
./Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_001_
./Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_002_
./Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_003_
./Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_MAP_
./Library/Mozilla/Profiles/Julian F. Woods/_DS_Store
./Library/PreferencePanes/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/AboutPanel.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/asm.rtfd/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/asm.rtfd/_typeAttributes.dict
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/de.vercruesse.cocoa.asm/ASM Controller .app/Contents/Resources/English.lproj/Main.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/Dutch.lproj/DonationPanel.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/Dutch.lproj/PrefPane.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/English.lproj/PrefPane.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/German.lproj/DonationPanel.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/German.lproj/PrefPane.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/Japanese.lproj/DonationPanel.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/Japanese.lproj/PrefPane.nib/_DS_Store
./Library/PreferencePanes/ASM.prefPane/Contents/Resources/sf.rtfd/_typeAttributes.dict
./Library/PreferencePanes/WindowShade X.prefPane/Contents/Resources/About.rtfd/_typeAttributes.dict
./Library/Preferences/_DS_Store
./Library/Preferences/_DS_Store
./Library/Preferences/_GlobalPreferences.plist
./Library/Preferences/_LSApplications_Backup
./Library/Preferences/_LSClaimedTypes_Backup
./Library/Preferences/_LSSchemes_Backup
./Library/Preferences/ByHost/_DS_Store
./Movies/_DS_Store
./Music/_DS_Store
./Pictures/.FBCLockFolder/_FBCSemaphoreFile
./Pictures/_DS_Store
./Pictures/_FBCIndex
./Pictures/Mac Desktop Pictures/.FBCLockFolder/_FBCSemaphoreFile
./Pictures/Mac Desktop Pictures/_DS_Store
./Pictures/Mac Desktop Pictures/_FBCIndex
./Public/_DS_Store
./Sites/_DS_Store
[localhost:~] jfwoods%

First question is: should any or all of these be reverted to begin with a dot instead of an underbar.

Second question: If so, what command would do the trick?

As I mentioned in an earlier post I have already converted some obvious ones, which had an immediate effect on my Window Maker. My Tinker Tool does not seem to UNdo what it originally did (i.e. make my hidden files visible).

Thanks

mervTormel
03-02-2002, 04:02 PM
boy, that is messed up.

you did a search only in your home directory; find . will search ./ current working directory tree.

i don't know how you got that way, but most of those files are expendable, and should not be moved to their .filename counterparts, as they have prolly already been regenerated.

in other words, .DS_Store, .FBC*, etc., files are prolly regenerated as needed.

i would wonder if your whole OSX installation has this abberation.

find / -xdev -name '_*'

b1hgaa88
03-02-2002, 05:07 PM
This will take at least three panes here, but here goes, Merv

[localhost:~] jfwoods% find / -xdev -name '_*'
/.FBCLockFolder/_FBCSemaphoreFile
find: /.Trashes: Permission denied
/_DS_Store
/_FBCIndex
/_hidden
/Applications/_DS_Store
/Applications/Chess.app/Contents/Resources/English.lproj/_snd.snd
/Applications/Control Panels (OS 9.2.2)/_DS_Store
/Applications/Drive 10.app/_DS_Store
/Applications/Drive 10.app/Contents/_DS_Store
/Applications/Drive 10.app/Contents/MacOS/_DS_Store
/Applications/Drive 10.app/Contents/Resources/_DS_Store
/Applications/Drive 10.app/Contents/Resources/English.lproj/_DS_Store
/Applications/Drive 10.app/Contents/Resources/French.lproj/_DS_Store
/Applications/Extensis Suitcase 10.1/_DS_Store
/Applications/iMovie.app/Contents/_DS_Store
/Applications/iMovie.app/Contents/Plug-ins/_DS_Store
/Applications/iMovie.app/Contents/Plug-ins/Toast Video CD Export.bundle/_DS_Store
/Applications/iMovie.app/Contents/Plug-ins/Toast Video CD Export.bundle/Contents/_DS_Store
/Applications/iMovie.app/Contents/Plug-ins/Toast Video CD Export.bundle/Contents/Resources/_DS_Store
/Applications/iMovie.app/Contents/Plug-ins/Toast Video CD Export.bundle/Contents/Resources/English.lproj/_DS_Store
/Applications/iTunes/_DS_Store
/Applications/iTunes/Plug-ins/_DS_Store
/Applications/iTunes/Plug-ins/Device Plug-ins/_DS_Store
/Applications/iTunes/Plug-ins/Libraries/_DS_Store
/Applications/iTunes/Zoomify iTunes Photo Visualizer/_DS_Store
/Applications/iTunes/Zoomify iTunes Photo Visualizer/Zoomify/_DS_Store
/Applications/NetBarrier/_DS_Store
/Applications/NetBarrier/Manuals/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Extensions (Mac OS 9)/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Data/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Music/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Music/CD Spin Doctor/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Photo/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Video/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Video/Toast Video CD Export.bundle/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Video/Toast Video CD Export.bundle/Contents/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Video/Toast Video CD Export.bundle/Contents/Resources/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Roxio Video/Toast Video CD Export.bundle/Contents/Resources/English.lproj/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/MacOS/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/English.lproj/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/English.lproj/Toast Help/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/English.lproj/Toast Help/pgs/ado/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/English.lproj/Toast Help/pgs/dta/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/English.lproj/Toast Help/pgs/gs/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/English.lproj/Toast Help/pgs/iso/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/French.lproj/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/French.lproj/Toast Help/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/German.lproj/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/German.lproj/Toast Help/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/Japanese.lproj/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/Japanese.lproj/Toast Help/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/Japanese.lproj/Toast Help/pgs/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/Japanese.lproj/Toast Help/pgs/gs/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/Japanese.lproj/Toast Help/pgs/img/_DS_Store
/Applications/Roxio Toast Titanium 5.1.2/Toast Titanium 5.1.2.app/Contents/Resources/Japanese.lproj/Toast Help/shrd/_DS_Store
/Applications/Utilities/_DS_Store
/Applications/XDarwin.app/_DS_Store
/Developer/Documentation/AdditionalTechnologies/_scripts
/Developer/Documentation/Apple Help/_xicnhlp.jpg
/Developer/Documentation/Apple Help/Apple Help Reference/HTML/AHAppendixA/_html
/Developer/Documentation/Carbon/_scripts
/Developer/Documentation/Carbon/HumanInterfaceToolbox/AppleHelp/ProvidingUserAssitAppleHelp/AHAppendixA/_html
/Developer/Documentation/Carbon/HumanInterfaceToolbox/AppManager/Appearance_Manager/Enumerations/_AppearanceDispatch.html
/Developer/Documentation/Carbon/HumanInterfaceToolbox/DialogManager/Dialog_Manager/Enumerations/_Dialog_Item_ay_Constants.html
/Developer/Documentation/Carbon/HumanInterfaceToolbox/DockManager/customizing_docktile/tasks/_notes
/Developer/Documentation/Carbon/HumanInterfaceToolbox/WindowManager/Window_Manager/Enumerations/_wind_Resour_em_Constants.html
/Developer/Documentation/Carbon/runtime/MixedModeManager/Mixed_Mode_Manager/Enumerations/_MixedModeMagic.html
/Developer/Documentation/Carbon/utilities/Math_LogicalUtilities/Mathematical_al_Utilities/DataTypes/_scalb_n_type.html
/Developer/Documentation/Carbon/utilities/Math_LogicalUtilities/Mathematical_al_Utilities/DataTypes/_trunc_return_type.html
/Developer/Documentation/Cocoa/_scripts
/Developer/Documentation/CoreTechnologies/_scripts
/Developer/Documentation/Darwin/_scripts
/Developer/Documentation/Darwin/IOKit/DeviceDrivers/MassStorage/02_Overview/_Mass_Stora_lementation.html
/Developer/Documentation/DeveloperTools/_scripts
/Developer/Documentation/Essentials/_scripts
/Developer/Documentation/Essentials/AquaHIGuidelines/AHIGDirectories/_File_Location.html
/Developer/Documentation/IOKit/usb/IOUSBLib/_notes
/Developer/Documentation/Java/_scripts
/Developer/Documentation/Networking/_scripts
/Developer/Documentation/QuickTime/_scripts
/Developer/Documentation/QuickTime/VR/_Site_Settings
/Developer/Documentation/QuickTime/WIN/_Site_Settings
/Developer/Examples/AppKit/TextEdit/_#DocumentReadWrite.m.1.29
/Developer/Examples/CoreAudio/Java/MIDIGraph/_cvsignore
/Developer/Examples/CoreAudio/Java/SMFPlayer/_cvsignore
/Developer/Examples/Java/AppKit/Sketch/Sketch.pbxproj/_#project.pbxproj.1.25
/Developer/Examples/Java/AppKit/Sketch/Sketch.pbxproj/_#project.pbxproj.1.27
/Library/_DS_Store
/Library/Application Support/Aladdin/StuffIt Express PE/StuffIt Express E-Mail Scripts/_DS_Store
/Library/Audio/_DS_Store
/Library/Caches/_FODB_Local
/Library/Desktop Pictures/_DS_Store
/Library/Documentation/_DS_Store
/Library/Documentation/Aladdin/_DS_Store
/Library/Filesystems/_DS_Store
/Library/Fonts/_default.fcache
/Library/Fonts/_DS_Store
/Library/Intego/_DS_Store
/Library/Intego/_netbarrier_info
/Library/Internet Plug-Ins/_DS_Store
/Library/Logs/_DS_Store
/Library/Perl/darwin/auto/Bom/_packlist
/Library/PreferencePanes/_DS_Store
/Library/Preferences/_DS_Store
/Library/Preferences/_Eng_Store
/Library/Preferences/_GlobalPreferences.plist
/Library/Receipts/_DS_Store
/Library/Receipts/Fink 0.3.2a Installer.pkg/Contents/Resources/_DS_Store
/Library/Receipts/libhistory.pkg/Contents/Resources/_DS_Store
/Library/Receipts/MacGIMP_Download.pkg/_DS_Store
/Library/Receipts/MacGIMP_Download.pkg/Contents/_DS_Store
/Library/Receipts/MacGIMP_Download.pkg/Contents/Resources/_DS_Store
/Library/Receipts/MacGIMP_Download.pkg/Contents/Resources/ReadMe.rtfd/_typeAttributes.dict
/Library/Receipts/MacGIMP_Download.pkg/Contents/Resources/Welcome.rtfd/_typeAttributes.dict
/Library/Receipts/NetBarrier.pkg/Contents/Resources/_DS_Store
/Library/Receipts/OSXGNUPKGTOOLS-01.pkg/_DS_Store
/Library/Receipts/OSXGNUPKGTOOLS-01.pkg/Contents/_DS_Store
/Library/Receipts/OSXGNUPKGTOOLS-01.pkg/Contents/Resources/_DS_Store
/Library/Receipts/OSXGNUPKGTOOLS-01.pkg/Contents/Resources/Welcome.rtfd/_typeAttributes.dict
/Library/Receipts/streamripper-1.0.5.pkg/Contents/Resources/_DS_Store
/Library/Receipts/Xfree86Complete-4.2.0.pkg/Contents/Resources/ReadMe.rtfd/_typeAttributes.dict
/Library/Receipts/Xfree86Complete-4.2.0.pkg/Contents/Resources/Welcome.rtfd/_typeAttributes.dict
/Library/StartupItems/_DS_Store
/Library/StartupItems/NetUpdate/_DS_Store
/Library/User Pictures/_DS_Store
/Library/User Pictures/Landscapes/_DS_Store
/Library/User Pictures/X Images/_DS_Store
/Library/WebServer/_DS_Store
/Library/WebServer/CGI-Executables/_DS_Store
/Library/WebServer/Documents/_DS_Store
/private/_DS_Store

b1hgaa88
03-02-2002, 05:09 PM
/private/etc/_DS_Store
/private/etc/X11/_DS_Store
find: /private/etc/X11/xdm/authdir: Permission denied
/private/var/_eit_cache
find: /private/var/cron: Permission denied
/private/var/db/_AppleSetupDone
/private/var/db/_com.apple.iokit.graphics
find: /private/var/db/dhcpclient: Permission denied
find: /private/var/db/netinfo/local.nidb: Permission denied
/private/var/log/_Fink 0.3.2a Installer.pk#1F87D
/private/var/log/_Fink 0.3.2a Installer.pk#1FD78
/private/var/log/_iTunes2.pkg.355.upgrade.I#DB9D
/private/var/log/_libhistory.pkg.11630.upg#2CBC9
/private/var/log/_Xfree86Complete-4.2.0.pk#1ED02
/private/var/log/_Xfree86Complete-4.2.0.pk#1FD47
/private/var/root/.FBCLockFolder/_FBCSemaphoreFile
/private/var/root/_CFUserTextEncoding
/private/var/root/_DS_Store
/private/var/root/_FBCIndex
/private/var/root/_forward
/private/var/root/_nsmbrc
/private/var/root/_tcsh_history
find: /private/var/root/Desktop: Permission denied
/private/var/root/Library/Caches/_ApplePrefPanesCache
/private/var/root/Library/Preferences/_GlobalPreferences.plist
/private/var/root/Library/Preferences/_LSApplications_Backup
/private/var/root/Library/Preferences/_LSClaimedTypes_Backup
/private/var/root/Library/Preferences/_LSSchemes_Backup
find: /private/var/root/Library/Preferences/ByHost: Permission denied
find: /private/var/run/sudo: Permission denied
find: /private/var/spool/lpd: Permission denied
find: /private/var/spool/printing/9FE44864-202F-11D6-9674-000A277E7F70.Q: Permission denied
/resources/_DS_Store
/sw/_DS_Store
/sw/lib/fink/mirror/_keys
/sw/lib/fink/mirror/_list
/sw/lib/latex2html/docs/_latex2html-init
/sw/share/man/man3/_nc_tracebits.3x
/sw/share/man/man3/_traceattr.3x
/sw/share/man/man3/_traceattr2.3x
/sw/share/man/man3/_tracechar.3x
/sw/share/man/man3/_tracechtype.3x
/sw/share/man/man3/_tracechtype2.3x
/sw/share/man/man3/_tracedump.3x
/sw/share/man/man3/_tracef.3x
/sw/share/man/man3/_tracemouse.3x
/sw/share/texmf/tex/latex/tools/_tex
/sw/src/_DS_Store
/sw/var/lib/apt/lists/_sw_fink_dists_local_main_binary-darwin-powerpc_Packages
/sw/var/lib/apt/lists/_sw_fink_dists_local_main_binary-darwin-powerpc_Release
/sw/var/lib/apt/lists/_sw_fink_dists_stable_crypto_binary-darwin-powerpc_Packages
/sw/var/lib/apt/lists/_sw_fink_dists_stable_crypto_binary-darwin-powerpc_Release
/sw/var/lib/apt/lists/_sw_fink_dists_stable_main_binary-darwin-powerpc_Packages
/sw/var/lib/apt/lists/_sw_fink_dists_stable_main_binary-darwin-powerpc_Release
/System/Library/Caches/_FODB_System
/System/Library/Caches/_fontTablesAnnex
/System/Library/Fonts/_coveredCharCache
/System/Library/Fonts/_default.fcache
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Dutch.lproj/NSPageLayout.nib/_NSLandscape.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Dutch.lproj/NSPageLayout.nib/_NSPortrait.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/English.lproj/NSPageLayout.nib/_NSLandscape.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/English.lproj/NSPageLayout.nib/_NSPortrait.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/French.lproj/NSPageLayout.nib/_NSLandscape.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/French.lproj/NSPageLayout.nib/_NSPortrait.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/German.lproj/NSPageLayout.nib/_NSLandscape.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/German.lproj/NSPageLayout.nib/_NSPortrait.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Italian.lproj/NSPageLayout.nib/_NSLandscape.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Italian.lproj/NSPageLayout.nib/_NSPortrait.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Japanese.lproj/NSPageLayout.nib/_NSLandscape.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Japanese.lproj/NSPageLayout.nib/_NSPortrait.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Spanish.lproj/NSPageLayout.nib/_NSLandscape.tiff
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Spanish.lproj/NSPageLayout.nib/_NSPortrait.tiff
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CORBA/_IDLTypeStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CORBA/_PolicyStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CORBA/class-use/_IDLTypeStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CORBA/class-use/_PolicyStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/_BindingIteratorImplBase.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/_BindingIteratorStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/_NamingContextImplBase.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/_NamingContextStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/class-use/_BindingIteratorImplBase.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/class-use/_BindingIteratorStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/class-use/_NamingContextImplBase.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/CosNaming/class-use/_NamingContextStub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/stub/java/rmi/_Remote_Stub.html
/System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/English.lproj/Documentation/Reference/Java 1/org/omg/stub/java/rmi/class-use/_Remote_Stub.html
/System/Library/Java/com/apple/cocoa/application/_NSObsoleteMenuItemProtocol.class
/System/Library/Java/com/apple/cocoa/foundation/_private
/System/Library/Perl/darwin/_packlist
/System/Library/Perl/darwin/auto/mod_perl/_packlist
/System/Library/UserTemplate/Dutch.lproj/_CFUserTextEncoding

b1hgaa88
03-02-2002, 05:11 PM
find: /System/Library/UserTemplate/Dutch.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/Dutch.lproj/Documents: Permission denied
find: /System/Library/UserTemplate/Dutch.lproj/Library: Permission denied
find: /System/Library/UserTemplate/Dutch.lproj/Movies: Permission denied
find: /System/Library/UserTemplate/Dutch.lproj/Music: Permission denied
find: /System/Library/UserTemplate/Dutch.lproj/Pictures: Permission denied
find: /System/Library/UserTemplate/Dutch.lproj/Public/Drop Box: Permission denied
/System/Library/UserTemplate/English.lproj/_CFUserTextEncoding
find: /System/Library/UserTemplate/English.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/English.lproj/Documents: Permission denied
find: /System/Library/UserTemplate/English.lproj/Library: Permission denied
find: /System/Library/UserTemplate/English.lproj/Movies: Permission denied
find: /System/Library/UserTemplate/English.lproj/Music: Permission denied
find: /System/Library/UserTemplate/English.lproj/Pictures: Permission denied
find: /System/Library/UserTemplate/English.lproj/Public/Drop Box: Permission denied
/System/Library/UserTemplate/French.lproj/_CFUserTextEncoding
find: /System/Library/UserTemplate/French.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/French.lproj/Documents: Permission denied
find: /System/Library/UserTemplate/French.lproj/Library: Permission denied
find: /System/Library/UserTemplate/French.lproj/Movies: Permission denied
find: /System/Library/UserTemplate/French.lproj/Music: Permission denied
find: /System/Library/UserTemplate/French.lproj/Pictures: Permission denied
find: /System/Library/UserTemplate/French.lproj/Public/Drop Box: Permission denied
/System/Library/UserTemplate/German.lproj/_CFUserTextEncoding
find: /System/Library/UserTemplate/German.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/German.lproj/Documents: Permission denied
find: /System/Library/UserTemplate/German.lproj/Library: Permission denied
find: /System/Library/UserTemplate/German.lproj/Movies: Permission denied
find: /System/Library/UserTemplate/German.lproj/Music: Permission denied
find: /System/Library/UserTemplate/German.lproj/Pictures: Permission denied
find: /System/Library/UserTemplate/German.lproj/Public/Drop Box: Permission denied
/System/Library/UserTemplate/Italian.lproj/_CFUserTextEncoding
find: /System/Library/UserTemplate/Italian.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/Italian.lproj/Documents: Permission denied
find: /System/Library/UserTemplate/Italian.lproj/Library: Permission denied
find: /System/Library/UserTemplate/Italian.lproj/Movies: Permission denied
find: /System/Library/UserTemplate/Italian.lproj/Music: Permission denied
find: /System/Library/UserTemplate/Italian.lproj/Pictures: Permission denied
find: /System/Library/UserTemplate/Italian.lproj/Public/Drop Box: Permission denied
/System/Library/UserTemplate/Japanese.lproj/_CFUserTextEncoding
find: /System/Library/UserTemplate/Japanese.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/Japanese.lproj/Documents: Permission denied
find: /System/Library/UserTemplate/Japanese.lproj/Library: Permission denied
find: /System/Library/UserTemplate/Japanese.lproj/Movies: Permission denied
find: /System/Library/UserTemplate/Japanese.lproj/Music: Permission denied
find: /System/Library/UserTemplate/Japanese.lproj/Pictures: Permission denied
find: /System/Library/UserTemplate/Japanese.lproj/Public/Drop Box: Permission denied
find: /System/Library/UserTemplate/Non_localized/Library: Permission denied
/System/Library/UserTemplate/Spanish.lproj/_CFUserTextEncoding
find: /System/Library/UserTemplate/Spanish.lproj/Desktop: Permission denied
find: /System/Library/UserTemplate/Spanish.lproj/Documents: Permission denied
find: /System/Library/UserTemplate/Spanish.lproj/Library: Permission denied
find: /System/Library/UserTemplate/Spanish.lproj/Movies: Permission denied
find: /System/Library/UserTemplate/Spanish.lproj/Music: Permission denied
find: /System/Library/UserTemplate/Spanish.lproj/Pictures: Permission denied
find: /System/Library/UserTemplate/Spanish.lproj/Public/Drop Box: Permission denied
/Users/_DS_Store
find: /Users/jfwoods/.Trash: Permission denied
/Users/jfwoods/_tcsh_history
/Users/jfwoods/_xinitrc.old.Feb17.11:46:52
/Users/jfwoods/Desktop/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Desktop/_DS_Store
/Users/jfwoods/Desktop/_FBCIndex
/Users/jfwoods/Desktop/QuickenDataStuff/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Desktop/QuickenDataStuff/_DS_Store
/Users/jfwoods/Desktop/QuickenDataStuff/_FBCIndex
/Users/jfwoods/Desktop/QuickenDataStuff/Backup Folder/_DS_Store
/Users/jfwoods/Desktop/QuickenDataStuff/Old Quicken Data/_DS_Store
/Users/jfwoods/Desktop/Remove Office/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Desktop/Remove Office/_FBCIndex
/Users/jfwoods/Desktop/WindowMaker-0.80.0/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Desktop/WindowMaker-0.80.0/_FBCIndex
/Users/jfwoods/Documents/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Documents/_DS_Store
/Users/jfwoods/Documents/_FBCIndex
/Users/jfwoods/Documents/Acrobat User Data/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Documents/Acrobat User Data/_DS_Store
/Users/jfwoods/Documents/Acrobat User Data/_FBCIndex
/Users/jfwoods/Documents/Acrobat User Data/Legal/_DS_Store
/Users/jfwoods/Documents/iTunes/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Documents/iTunes/_DS_Store
/Users/jfwoods/Documents/iTunes/_FBCIndex
/Users/jfwoods/Documents/iTunes/iTunes Music/_DS_Store
/Users/jfwoods/Documents/MacGimp Manuals etc./.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Documents/MacGimp Manuals etc./_DS_Store
/Users/jfwoods/Documents/MacGimp Manuals etc./_FBCIndex
/Users/jfwoods/Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/_DS_Store
/Users/jfwoods/Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/_DS_Store
/Users/jfwoods/Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/Resources/_DS_Store
/Users/jfwoods/Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/Resources/ReadMe.rtfd/_typeAttributes.dict
/Users/jfwoods/Documents/MacGimp Manuals etc./MacGIMP_Download.pkg/Contents/Resources/Welcome.rtfd/_typeAttributes.dict
/Users/jfwoods/Documents/Microsoft User Data/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Documents/Microsoft User Data/_FBCIndex
/Users/jfwoods/GNUstep/_DS_Store
/Users/jfwoods/GNUstep/Library/WindowMaker/_DS_Store
/Users/jfwoods/Library/_DS_Store
/Users/jfwoods/Library/Addresses/_DS_Store
/Users/jfwoods/Library/Application Support/Aladdin/StuffIt Express PE/StuffIt Express E-Mail Scripts/_DS_Store
/Users/jfwoods/Library/Application Support/LaunchBar/_license
/Users/jfwoods/Library/Audio/_DS_Store
/Users/jfwoods/Library/Caches/_ApplePrefPanesCache

b1hgaa88
03-02-2002, 05:12 PM
/Users/jfwoods/Library/Caches/_FODB_Classic
/Users/jfwoods/Library/Caches/_FODB_User
/Users/jfwoods/Library/Favorites/_DS_Store
/Users/jfwoods/Library/init/_DS_Store
/Users/jfwoods/Library/init/tcsh/_DS_Store
/Users/jfwoods/Library/iTunes/_DS_Store
/Users/jfwoods/Library/iTunes/iTunes Plug-ins/_DS_Store
/Users/jfwoods/Library/Mail/Mailboxes/Deleted Messages.mbox/_lock
find: /Users/jfwoods/Library/Mail/Mailboxes/Delivered 3592.mbox: Permission denied
/Users/jfwoods/Library/Mail/Mailboxes/INBOX.mbox/_lock
/Users/jfwoods/Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/_DS_Store
/Users/jfwoods/Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_001_
/Users/jfwoods/Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_002_
/Users/jfwoods/Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_003_
/Users/jfwoods/Library/Mozilla/Profiles/Julian F. Woods/7vhgt4t6.slt/Cache/_CACHE_MAP_
/Users/jfwoods/Library/Mozilla/Profiles/Julian F. Woods/_DS_Store
/Users/jfwoods/Library/PreferencePanes/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/AboutPanel.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/asm.rtfd/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/asm.rtfd/_typeAttributes.dict
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/de.vercruesse.cocoa.asm/ASM Controller .app/Contents/Resources/English.lproj/Main.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/Dutch.lproj/DonationPanel.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/Dutch.lproj/PrefPane.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/English.lproj/PrefPane.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/German.lproj/DonationPanel.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/German.lproj/PrefPane.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/Japanese.lproj/DonationPanel.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/Japanese.lproj/PrefPane.nib/_DS_Store
/Users/jfwoods/Library/PreferencePanes/ASM.prefPane/Contents/Resources/sf.rtfd/_typeAttributes.dict
/Users/jfwoods/Library/PreferencePanes/WindowShade X.prefPane/Contents/Resources/About.rtfd/_typeAttributes.dict
/Users/jfwoods/Library/Preferences/_DS_Store
/Users/jfwoods/Library/Preferences/_DS_Store
/Users/jfwoods/Library/Preferences/_GlobalPreferences.plist
/Users/jfwoods/Library/Preferences/_LSApplications_Backup
/Users/jfwoods/Library/Preferences/_LSClaimedTypes_Backup
/Users/jfwoods/Library/Preferences/_LSSchemes_Backup
/Users/jfwoods/Library/Preferences/ByHost/_DS_Store
/Users/jfwoods/Movies/_DS_Store
/Users/jfwoods/Music/_DS_Store
/Users/jfwoods/Pictures/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Pictures/_DS_Store
/Users/jfwoods/Pictures/_FBCIndex
/Users/jfwoods/Pictures/Mac Desktop Pictures/.FBCLockFolder/_FBCSemaphoreFile
/Users/jfwoods/Pictures/Mac Desktop Pictures/_DS_Store
/Users/jfwoods/Pictures/Mac Desktop Pictures/_FBCIndex
/Users/jfwoods/Public/_DS_Store
/Users/jfwoods/Sites/_DS_Store
/usr/_DS_Store
/usr/bin/_DS_Store
/usr/include/gcc/darwin/2.95.2/g++/_G_config.h
/usr/include/netinfo/_lu_types.h
/usr/include/netinfo/_lu_types.x
/usr/share/man/man2/__syscall.2
/usr/share/man/man2/_exit.2
/usr/share/man/man3/_longjmp.3
/usr/share/man/man3/_setjmp.3
/usr/X11R6/_XFree86_Version
/Volumes/BackUp/_autodiskmounted
/Volumes/Main/_autodiskmounted
/Volumes/Netscape 6 for MacOS X/_autodiskmounted
/Volumes/System922/_autodiskmounted
/What's New in 1.0.4.rtfd/_typeAttributes.dict
[localhost:~] jfwoods%

hschickel
03-02-2002, 05:19 PM
Generally I use the terminal to muck with the hidden files. In a moment of daring I decided to try TinkerTool while logged in as staff user (he only had write permissions on his own home folder). TinkerTool did not create the problems you noted. Further, when I tried TinkerTool as an admin, I got no problems. TT does not change the .files to _files. Something else is wrong here.

I believe your system is compromised. You may want to again consider a reinstall.

Hugh

mervTormel
03-02-2002, 05:20 PM
b1, i dint want to see them. please edit those posts down to their nubs.

sao
03-03-2002, 12:20 AM
b1hgaa88,

I agree with hschickel and MervTormel, at this stage, you probably will be better off by reinstalling, and stopping the agony.

Good luck.

Cheers...

TheEconomist
08-05-2004, 04:20 AM
I encountered this problem after installing some software (with Fink I believe). The problem seems to have been that / had incorrect permissions. God only knows why this would be changed. Found this idea another post.

chmod 755 /

Will fix this. I believe that is the correct permissions, but I'm not sure.