web-dev-qa-db-fra.com

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

J'étais en train de configurer Samba et j'ai essayé d'ajouter un utilisateur de domaine, mais cela retourne ceci:

failed to add entry for the user student

Ce sont 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?

13
Bishwanath Das

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

29
mmstick

Peut-être que vous ne l'avez pas encore créé. Donc, pour l'ajouter pour la première fois à samba, il faut ajouter le

-a

option

Sudo smbpasswd -a test
0
Philippe Gachoud