Answers for "update user password linux"

0

chnage the password of user n linu

sudo passwd vivek
Posted by: Guest on July-17-2021
0

linux change password chpasswd

# Chpasswd command is very simple to use 
[ root@myhost ~ ] # echo "tom:1234" | chpasswd
 
# Using the passwd command, you can also change the password in a batch like mode
[ root@myhost ~ ] # echo "1234" | passwd --stdin "tom" 
Changing password for user tom.
 passwd: All authentication tokens Updated successfully.
Posted by: Guest on October-23-2021

Code answers related to "update user password linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language