RUT955 reset password via bash script?

is there a way of resetting the password from within a bash script? I tried this Change root password using a Bash script - Stack Overflow but the RUT955 passwd doesn’t support the --stdin parameter and there is no chpasswd installed

Use
echo -e “newpassword\nnewpassword” | passwd &> /dev/null

1 Like

This topic was automatically closed 40 hours after the last reply. New replies are no longer allowed.