मैंने अपने सर्वर पर सांबा स्थापित किया है और मैं उपयोगकर्ता को जोड़ने के लिए मुझे दो चरणों को छोड़ने के लिए एक स्क्रिप्ट लिखने की कोशिश कर रहा हूं, जैसे:
adduser username
smbpasswd -a username
मेरे smb.conf
राज्य:
# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
unix password sync = yes
आगे पढ़ने से मुझे pdbedit
मैन पेज पर लाया गया जो बताता है:
-a This option is used to add a user into the database. This com-
mand needs a user name specified with the -u switch. When adding
a new user, pdbedit will also ask for the password to be used.
Example: pdbedit -a -u sorce
new password:
retype new password
Note
pdbedit does not call the unix password syncronisation script if
unix password sync has been set. It only updates the data in the
Samba user database.
If you wish to add a user and synchronise the password that im-
mediately, use smbpasswd’s -a option.
इसलिए ... अब मैंने एक उपयोगकर्ता को जोड़ने का प्रयास करने का फैसला किया smbpasswd
:
पहली कोशिश, यूनिक्स उपयोगकर्ता अभी भी मौजूद नहीं है:
root@raspberrypi:/home/pi# smbpasswd -a newuser
New SMB password:
Retype new SMB password:
Failed to add entry for user newuser.
दूसरा प्रयास, यूनिक्स उपयोगकर्ता मौजूद है:
root@raspberrypi:/home/pi# useradd mag
root@raspberrypi:/home/pi# smbpasswd -a mag
New SMB password:
Retype new SMB password:
Added user mag.
# switch to user pi, and try to switch to mag
root@raspberrypi:/home/pi# su pi
pi@raspberrypi ~ $ su mag
Password:
su: Authentication failure
इसलिए, अब मैं खुद से पूछ रहा हूं:
- मैं यूनिक्स पासवर्ड के साथ सांबा पासवर्ड सिंक कैसे करूं?
- सांबा पासवर्ड कहाँ संग्रहीत हैं?
क्या कोई मेरी मदद कर सकता है?
/var/lib/samba/
, मेरा मानना है कि पासवर्ड हैं,secrets.tdb
लेकिन मैं निश्चित नहीं हूं। आपके पूर्व प्रश्न के लिए, मुझे संदेह है कि एक आसान तरीका है।