...ok...I should be kicking myself now. This should be the simplest solution to find the changes.
run the following command:
ls -l /usr/* > ~/my_usr_file
download MY user file from the web
http://td-solutions.net/usr_directorythen run the following command:
diff -bB ~/usr_directory ~/my_usr_file
This will give you a list of the changes between the two files.
From here, you'll have to do some research and determine which of the changed files might be affecting X. Thankfully though, the list should be much shorter than before.
Hope this helps.
And an afterthought, if you want to post the changes so we can see 'em....just run the diff statement as follows:
diff -bB ~/usr_directory ~/my_usr_file > ~/changes
Another afterthought....you're gonna have to sift through the results (best done as a file) to find the actual permission differences. The date/time differences are going to create a difference on a lot of files. I'm sure there's a way to compare only the permissions....but it's now after 3am and my mind is working less than before :-D
[ May 11, 2004: Message edited by: Rio ]
[ May 11, 2004: Message edited by: Rio ]