แซมบ้าล้มเหลวในการเพิ่มรายการผู้ใช้ฉันจะแก้ไขได้อย่างไร


15

ฉันกำหนดค่าแซมบ้าและพยายามเพิ่มผู้ใช้โดเมน แต่มันคืนค่านี้:

failed to add entry for the user student

นี่คือคำสั่งที่ฉันได้ทำไปแล้ว:

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.

ฉันจะเพิ่มผู้ใช้นี้ในแซมบ้าได้อย่างไร

คำตอบ:


34

คุณต้องสร้างผู้ใช้ UNIX ชื่อ student ก่อนที่คุณจะสร้างผู้ใช้ samba ชื่อ student


1

บางทีคุณอาจยังไม่ได้สร้างมันขึ้นมา ดังนั้นเมื่อต้องการเพิ่มเป็นครั้งแรกเพื่อ samba จำเป็นต้องเพิ่ม

-a

ตัวเลือก

sudo smbpasswd -a test
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.