I'd like to change the password of another user, as root, but don't want the user to be prompted to change their password when the log in. As far as I can tell, any mechanism to change the password as root set the ADMCHG flag in /etc/security/passwd

link|improve this question
feedback

4 Answers

up vote 7 down vote accepted
man pwdadm
pwdadm -c
link|improve this answer
feedback

echo "user:n3w_p466w0rd" | /bin/chpasswd -c

link|improve this answer
feedback
  1. Use passwd to change the user's password: passwd $user

  2. Use pwdadm command to cancel the password-change prompt: pwdadm -c $user

That's it! :)

link|improve this answer
feedback

Do you need to do it in an automated way? If it's a one-off then change it to a temp password, then login as that user and change it to the desired password.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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