Samba nie dodaje wpisu użytkownika, jak to naprawić?

15

Konfigurowałem Sambę i próbowałem dodać użytkownika domeny, ale zwraca to:

failed to add entry for the user student

Oto polecenia, które wykonałem do tej pory:

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.

Jak mogę dodać tego użytkownika do Samby?

Bishwanath Das
źródło

Odpowiedzi:

34

Musisz utworzyć użytkownika UNIX o nazwie student przed utworzeniem użytkownika samba o nazwie student.

mmstick
źródło
1

Może jeszcze go nie stworzyłeś. Aby dodać go po raz pierwszy do samby, należy dodać

-a

opcja

sudo smbpasswd -a test
Philippe Gachoud
źródło