How to reset default permissions for /etc?

32,552

Solution 1

What I would do :

$ sudo su
chown -R root:root /etc
find /etc -type f -exec chmod 644 {} +
find /etc -type d -exec chmod 755 {} +
chmod 755 /etc/init.d/* /etc/rc.local /etc/network/* /etc/cron.*/*
chmod 400 /etc/ssh/ssh*key

Maybe it's not sufficient, but without any backup, that's a good start.

Solution 2

As a next step after sputnik recommendation, you could do this: On a fresh install of a ubuntu server with the same version as your broken one, run this:

find /etc -type f -executable | awk '{printf("chmod a+x %s\n",$0);}' > setexec.sh

Then import the script setexec.sh (using wget or ftp) and execute it on the broken server. on ubuntu 13.04 this step restored most of the functionalities.

Share:
32,552

Related videos on Youtube

Satish Prasad
Author by

Satish Prasad

Updated on September 18, 2022

Comments

  • Satish Prasad
    Satish Prasad over 1 year

    By mistake I have made permission changes for /etc. Now it's giving me the following error message:

    bash: /etc/bash.bashrc: Permission denied  
    I have no name!@chandan-Inspiron-5520:~$ sudo /etc/init.d/apache2 restart  
    sudo: unable to stat /etc/sudoers: Permission denied  
    sudo: no valid sudoers sources found, quitting  
    sudo: unable to initialize policy plugin  
    
  • Rinzwind
    Rinzwind over 9 years
    here is a list from my desktop: askubuntu.com/questions/508359/…
  • Dave James Miller
    Dave James Miller over 7 years
    Thank you for this idea. I used a variant of it to copy all permissions, not just the execute bit: find /etc/ -exec stat -c "chmod %a %n" '{}' \; > setperms.sh
  • Plinio Bueno Andrade Silva
    Plinio Bueno Andrade Silva almost 4 years
    Solved for me! Thks.