By Mistake on Ubuntu 9.04 my colleague has changed the permissions to 777 on root directory (/)

whats the best way to recover the permissions ?

link|improve this question
Was it recursive? – Dennis Williamson Nov 10 '10 at 7:14
Yes, it was :( ! – necromancer Nov 10 '10 at 17:08
feedback

2 Answers

up vote 2 down vote accepted

If he did not chmod -R the Directory Root - don't panic. Changing back the root directories permission to default can be achieved via:

chmod 755 / 
link|improve this answer
1  
Double check it's owned by root:root as well. – Phil Nov 10 '10 at 10:35
I've re-installed ubuntu !! now onwards I've to be careful for sudoers users !!! – necromancer Nov 10 '10 at 17:09
feedback

if it's recursive , you could mount a new ubuntu installation and make a script which compares default permissions for every file with yours. Of course it cannot work for files other than the basic installation. For the extra files you could reinstall the "world" (I borrow the term from gentoo, i don't how it's called in Ubuntu) {It's the file which says what packages are installed on your system}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.