Samba ne parvient pas à ajouter une entrée utilisateur, comment puis-je résoudre ce problème?

15

Je configurais Samba et j'ai essayé d'ajouter un utilisateur de domaine, mais cela renvoie ceci:

failed to add entry for the user student

Voici les commandes que j'ai faites jusqu'à présent:

frigate@frigate-desktop:~$ su 
Password: 
root@frigate-desktop:/home/frigate# nano /etc/samba/smb.conf 
root@frigate-desktop:/home/frigate# groupadd -g 201 machines
root@frigate-desktop:/home/frigate# mkdir -m 0775 /home/ntlogon
root@frigate-desktop:/home/frigate# mkdir /home/samba /home/samba/profiles
root@frigate-desktop:/home/frigate# chmod 1755 /home/samba/profiles/
root@frigate-desktop:/home/frigate# useradd -m test
root@frigate-desktop:/home/frigate# passwd test
Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
root@frigate-desktop:/home/frigate# smbpasswd -a test
New SMB password:
Retype new SMB password:
Added user test.
root@frigate-desktop:/home/frigate# smbpasswd -a root
New SMB password:
Retype new SMB password:
Added user root.
root@frigate-desktop:/home/frigate# smbpasswd -a student
New SMB password:
Retype new SMB password:
Failed to add entry for user student.
root@frigate-desktop:/home/frigate# smbpasswd -a student
New SMB password:
Retype new SMB password:
Failed to add entry for user student.
root@frigate-desktop:/home/frigate# smbpasswd -a stu
New SMB password:
Retype new SMB password:
Mismatch - password unchanged.
Unable to get new password.
root@frigate-desktop:/home/frigate# smbpasswd -a stu
New SMB password:
Retype new SMB password:
Failed to add entry for user stu.

Comment puis-je ajouter cet utilisateur à Samba?

Bishwanath Das
la source

Réponses:

34

Vous devez créer un utilisateur UNIX nommé étudiant avant de créer un utilisateur samba nommé étudiant.

mmstick
la source
1

Vous ne l'avez peut-être pas encore créé. Donc, pour l'ajouter pour la première fois à la samba, vous devez ajouter le

-a

option

sudo smbpasswd -a test
Philippe Gachoud
la source