Samba no puede agregar una entrada de usuario, ¿cómo soluciono esto?

15

Estaba configurando Samba e intenté agregar un usuario de dominio, pero devuelve esto:

failed to add entry for the user student

Estos son los comandos que he hecho hasta ahora:

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.

¿Cómo puedo agregar este usuario a Samba?

Bishwanath Das
fuente

Respuestas:

34

Debe crear un usuario de UNIX llamado estudiante antes de crear un usuario de samba llamado estudiante.

mmstick
fuente
1

Quizás aún no lo creaste. Entonces, para agregarlo por primera vez a samba, es necesario agregar el

-a

opción

sudo smbpasswd -a test
Philippe Gachoud
fuente