Como posso redefinir as permissões de / var?

3

Meu amigo fez um chmod -R 777 /var por engano. Agora ele tem suas permissões de pasta / var como esta:

drwxr-xr-x 15 root   root     4096 Dec 29 17:36 .
drwxr-xr-x 23 root   root     4096 Dec 10 11:15 ..
drwxrwxrwx  2 root   root     4096 Dec 28 09:54 backups
drwxrwxrwx 22 root   root     4096 Nov  9 11:06 cache
drwxrwsrwx  2 root   whoopsie 4096 Dec 31 09:38 crash
drwxrwxrwx  2 root   root     4096 Apr 23  2012 games
drwxrwxrwx 62 root   root     4096 Dec 10 11:06 lib
drwxrwsrwx  2 root   staff    4096 Apr 19  2012 local
lrwxrwxrwx  1 root   root        9 Dec 29 17:36 lock -> /run/lock
drwxrwxrwx 19 root   root     4096 Dec 31 09:54 log
drwxrwsrwx  2 root   mail     4096 Apr 23  2012 mail
drwxrwxrwx  2 root   root     4096 Apr 23  2012 opt
lrwxrwxrwx  1 root   root        4 Dec 29 17:36 run -> /run
drwxrwxrwx 10 root   root     4096 Jun 29  2012 spool
drwxrwxrwx  2 root   root     4096 Dec 31 10:03 tmp
drwxrwsrwx 15 noufal www-data 4096 Dec 28 10:59 www

E eu tenho o meu como:

drwxr-xr-x 15 root root     4096 Dec 29 18:16 .
drwxr-xr-x 24 root root     4096 Dec 18 10:03 ..
drwxr-xr-x  2 root root     4096 Dec 31 10:00 backups
drwxr-xr-x 24 root root     4096 Nov  7 15:03 cache
drwxrwsrwt  2 root whoopsie 4096 Dec 31 09:55 crash
drwxr-xr-x  2 root root     4096 Apr 23  2012 games
drwxr-xr-x 74 root root     4096 Dec 29 17:30 lib
drwxrwsr-x  2 root staff    4096 Apr 19  2012 local
lrwxrwxrwx  1 root root        9 Dec 29 18:16 lock -> /run/lock
drwxr-xr-x 23 root root     4096 Dec 31 10:00 log
drwxrwsr-x  2 root mail     4096 Dec 31 10:39 mail
drwxr-xr-x  2 root root     4096 Apr 23  2012 opt
lrwxrwxrwx  1 root root        4 Dec 29 18:16 run -> /run
drwxr-xr-x 10 root root     4096 Jun 22  2012 spool
drwxrwxrwt  6 root root     4096 Dec 31 10:49 tmp
drwxrws--- 31 saji www-data 4096 Nov 27 15:05 www

Temos sistemas semelhantes. Como posso redefinir a permissão de /var arquivos e pastas para o estado inicial, não fazendo isso individualmente para um arquivo / pasta.

    
por saji89 31.12.2012 / 06:38

2 respostas

7

Uma maneira é instalar outra máquina ou VM com a mesma versão do SO e, nessa máquina, executar esses dois comandos:

find / -exec stat --format "chmod %a %n" {} \; > /tmp/restoreperms.sh
find / -exec stat --format 'chown %U:%G %n' {} \; >> /tmp/restoreperms.sh

o comando 'find' encontra o diretório raiz e verifica suas permissões usando 'chmod' e salva-o em um arquivo de permissão temporário.

Ou este que combina os dois:

/usr/bin/find / -exec /usr/bin/stat --format="[ ! -L {} ] && /bin/chmod %a %n" {} \; -exec /usr/bin/stat --format="/bin/chown -h %U:%G %n" {} \; > /tmp/restoreperms.sh

depois, copie o arquivo /tmp/restoreperms.sh para a máquina com permissões quebradas:

scp /tmp/restoreperms.sh user@ip_address:/tmp/

scp copia com segurança as permissões armazenadas em um diretório temporário / tmp / e executá-lo de lá.

    
por owl 31.12.2012 / 07:17
1

tente este find /var -name "*" | while read -r dir ; do echo "$dir"; stat -c %a "$dir"; done você será capaz de encontrar o nome do arquivo com a permissão e gravá-lo em um arquivo e copiar o arquivo para o computador do seu amigo e combinar cada nome de arquivo, escrevendo outro script lá.note que chmod tem chmod --reference=RFile file facility para que você possa procurar por cada arquivo correspondente e aplicar a referência lá.

    
por harish.venkat 31.12.2012 / 07:16