Samba kann keinen Benutzereintrag hinzufügen. Wie kann ich das beheben?

15

Ich habe Samba konfiguriert und versucht, einen Domänenbenutzer hinzuzufügen, aber es gibt Folgendes zurück:

failed to add entry for the user student

Dies sind die Befehle, die ich bisher ausgeführt habe:

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.

Wie kann ich diesen Benutzer zu Samba hinzufügen?

Bishwanath Das
quelle

Antworten:

34

Sie müssen einen UNIX-Benutzer namens student erstellen, bevor Sie einen Samba-Benutzer namens student erstellen.

mmstick
quelle
1

Vielleicht haben Sie es noch nicht erstellt. Um es also zum ersten Mal zu Samba hinzuzufügen, muss das hinzugefügt werden

-a

Möglichkeit

sudo smbpasswd -a test
Philippe Gachoud
quelle