Translations:Linux introduction/22/fr: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Created page with "* Empêcher les membres du groupe et les autres utilisateurs de lire ou de modifier le fichier <tt>secret.txt</tt> : {{Command|chmod go-rwx secret.txt}} * Permettre à tous de...")
(No difference)

Revision as of 18:25, 24 May 2016

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Linux introduction)
* Prevent group members and all others to read or modify the file <code>secret.txt</code>: {{Command|chmod go-rwx secret.txt}}
* Allow everybody to read the file <code>public.txt</code>: {{Command|chmod a+r public.txt}}
* Make the file <code>script.sh</code> executable: {{Command|chmod a+x script.sh}}
* Allow group members to read and write in the directory <code>shared</code>: {{Command|chmod g+rwx shared}}
* Prevent other users from reading or modifying your home directory: {{Command|chmod go-rw ~}}
  • Empêcher les membres du groupe et les autres utilisateurs de lire ou de modifier le fichier secret.txt :
    Question.png
    [name@server ~]$ chmod go-rwx secret.txt
    
  • Permettre à tous de lire le fichier public.txt :
    Question.png
    [nom@serveur ~]$ chmod a+r publique.txt
    
  • Rendre le fichier script.sh exécutable :
    Question.png
    [nom@serveur ~]$ chmod a+x script.sh
    
  • Permettre aux membres du groupe de lire et d'écrire dans le répertoire partage :
    Question.png
    [nom@serveur ~]$ chmod g+rwx partage
    
  • Empêcher d'autres utilisateurs de lire le contenu de son répertoire personnel :
    Question.png
    [nom@serveur ~]$ chmod go-rw ~