I want to m开发者_StackOverflowake creating a samba password automated but this command doesn't work:
echo "passwd"|smbpasswd -a -s $user
It shows this error:
Mismatch - password unchanged. Unable to get new password.
Could you please suggest any option to make my script automated?
You need to repeat the password, "for confirmation" so to speak, so e.g.
printf "passwd\npasswd\n" | smbpasswd -a -s $user
should work.
The printf solution above works perfect, but also echo -e works fine
echo -e "yourpass\nyourpass\n" |smbpasswd -a -s youruser
精彩评论