ubuntu 12.04 Permissões de arquivo ou proprietário eram inseguras

-1

Deixe-me explicar um pouco sobre o que estou tentando fazer, estou tentando gerenciar os arquivos do Network Manager por meio de um usuário não raiz e recebo a mensagem de erro que diz:

keyfile: updating /etc/NetworkManagere/system-connections/zzssid
keyfile: error: File Permissions (100660) or owner (1000) were insecure

e, em seguida, a máquina não se conecta a wifi, mas se o usuário root criar o arquivo e colocá-lo na pasta de conexões do sistema, o wifi funcionará imediatamente.

Qualquer sugestão ou feedback sobre isso seria apreciado.

    
por mandm 25.04.2015 / 01:08

1 resposta

1

De man NetworkManager.conf :

keyfile
        plugin  is  the  generic  plugin  that  supports all 
the connection types and capabilities that NetworkManager has. 
It writes files out in a .ini-style format in 
/etc/NetworkManager/system-connections. For security, it will 
ignore  files that  are  readable or writeable by any user or 
group other than root since private keys and passphrases may be stored
in plaintext inside the file.

No seu caso, o proprietário do arquivo /etc/NetworkManagere/system-connections/zzssid é o usuário que tem UID 1000 e a permissão foi configurada como 660 , portanto, não estava funcionando. Você precisa definir o proprietário e o grupo como root com apenas root com a permissão de leitura / gravação. Aqui está um exemplo:

$ ls -l /etc/NetworkManager/system-connections/

-rw------- 1 root root 324 Feb 18 20:36 Test-WiFi
-rw------- 1 root root 315 Apr 11 01:14 FooBar-WiFi
    
por heemayl 25.04.2015 / 02:08