3

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 ?

necromancer
  • 141
  • 1
  • 1
  • 4

2 Answers2

6

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 / 
pacey
  • 3,833
  • 1
  • 15
  • 31
1

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}

Nikolaidis Fotis
  • 1,994
  • 11
  • 13
  • for future reference, reinstalling world in ubuntu is apt-get --reinstall install $(dpkg --get-selections|grep install |grep -v deinstall|awk '{print $1}'), fuzzy memory but tested code – Behrooz Jul 26 '15 at 06:19