vote up 2 vote down star

How can I pipe the new password to smbpasswd so I can automate my installation process.

flag

7 Answers

vote up 2 vote down check

Thanks to Mark I found the answer:

(echo newpassword; echo confirmNewPassword) | smbpasswd -s

BTW: (echo oldpasswd; echo newpasswd) | smbpasswd -s does not work.

link|flag
vote up 1 vote down

Try something like this:

(echo oldpasswd; echo newpasswd) | smbpasswd -s
link|flag
vote up 0 vote down

using either pipelines or redirection.

link|flag
vote up 0 vote down

@mark I am getting this:

Mismatch - password unchanged.
Unable to get new password.
link|flag
vote up 0 vote down

@unk

what happens when you run

smbpasswd -s

by itself, and you type in from the keyboard?

link|flag
vote up 0 vote down

I use the following in one of my scripts:

   echo -ne "$PASS\n$PASS\n" | smbpasswd -a -s $LOGIN

With echo:

-e : escape sequences, like \n

-n : don't add implicit newline at end

With smbpasswd:

-a : add new user

-s : silent

link|flag
vote up 0 vote down

" echo -ne "$PASS\n$PASS\n" | smbpasswd -a -s $LOGIN "

Thanks for this suggestion, it's works fine in my script! Jvonne

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.