web-dev-qa-db-fra.com

usermod dit que le compte n'existe pas mais adduser dit qu'il existe

Je lance la commande

usermod -a -G dialout amashreghi

mais je reçois amashreghi n'existe pas, cependant, quand j'essaye d'ajouter l'utilisateur en utilisant adduser

adduser amashreghi

Il dit que l'amashreghi existe déjà. Que se passe-t-il?!

2
A. Mashreghi

Éditer /etc/group utilise directement vigr

De man vigr

NAME
       vipw, vigr - edit the password, group, shadow-password or shadow-group file

SYNOPSIS
       vipw [options]

       vigr [options]

DESCRIPTION
       The vipw and vigr commands edits the files /etc/passwd and /etc/group, respectively. With the -s flag,
       they will edit the shadow versions of those files, /etc/shadow and /etc/gshadow, respectively. The
       programs will set the appropriate locks to prevent file corruption. When looking for an editor, the
       programs will first try the environment variable $VISUAL, then the environment variable $EDITOR, and
       finally the default editor, vi(1).

Par conséquent, vous pouvez modifier le /etc/group fichier avec

Sudo vigr

Le format des entrées de groupe peut être trouvé dans man. De man group:

NAME
       group - user group file

DESCRIPTION
       The  /etc/group file is a text file that defines the groups on the system.  There is one entry per line,
       with the following format:

           group_name:password:GID:user_list

       The fields are as follows:

       group_name  the name of the group.

       password    the (encrypted) group password.  If this field is empty, no password is needed.

       GID         the numeric group ID.

       user_list   a list of the usernames that are members of this group, separated by commas.

FILES
       /etc/group
2
abu_bua

cela a fonctionné pour moi:

Sudo usermod -aG dialout amashreghi
0
Sumsum K.

Essayez ceci. (Je suppose que vous êtes prêt à supprimer tout ce qui est associé à cet utilisateur et à recommencer, ne les exécutez pas si vous ne l'êtes pas.)

userdel -r amashreghi
grep amashreghi /etc/passwd

Si cette deuxième commande renvoie quelque chose, exécutez:

Sudo -H gedit /etc/passwd

Supprimez la ligne commençant par amashreghi et enregistrez le fichier. Essayez d'ajouter à nouveau l'utilisateur maintenant.

0
P3TR1CH0R