mymac
est mon compte d'utilisateur personnel sur la machine mastodonte
mymac:x:1000:1000:juggernaut,,,:/home/mymac:/bin/bash
Qu'est-ce que cela signifie x, 1000, 1000? Et les virgules qui suivent?
Par analogie, expliquez également:
root:x:0:0:root:/root:/bin/bash
De man 5 passwd
:
/etc/passwd contains one line for each user account, with seven fields
delimited by colons (“:”). These fields are:
· login name
· optional encrypted password
· numerical user ID
· numerical group ID
· user name or comment field
· user home directory
· optional user command interpreter
x
serait le mot de passe crypté facultatif, à propos duquel la page de manuel poursuit:
The encrypted password field may be blank, in which case no password is
required to authenticate as the specified login name. However, some
applications which read the /etc/passwd file may decide not to permit
any access at all if the password field is blank. If the password field
is a lower-case “x”, then the encrypted password is actually stored in
the shadow(5) file instead; there must be a corresponding line in the
/etc/shadow file, or else the user account is invalid. If the password
field is any other string, then it will be treated as an encrypted
password, as specified by crypt(3).
Les virgules séparent les champs GECOS :
Le format typique du champ GECOS est une liste délimitée par des virgules avec cet ordre:
- Nom complet de l'utilisateur (ou nom de l'application, si le compte est pour un programme)
- Numéro de bâtiment et de salle ou personne de contact
- Numéro de téléphone du bureau
- Toute autre information de contact (numéro de téléavertisseur, télécopieur, etc.)
Alors:
mymac:x:1000:1000:juggernaut,,,:/home/mymac:/bin/bash
| | | | | | |
| | | | | | Login Shell
| | | | | Home directory
| | | | GECOS fields (full name, etc.)
| | | Primary Group id
| | User ID
| Encrypted password indicator
Username