欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  运维

linux如何修改密码

程序员文章站 2022-03-22 15:06:27
...

linux修改密码的方法:使用chpasswd命令,命令行修改,代码为【[root@localhost testuser]# echo 'testuser:!@#$5678'|chpasswd】。

linux如何修改密码

linux修改密码的方法:

1、passwd 命令,手动修改:

[root@localhost testuser]# passwd testuser
Changing password for user testuser.
New password: 
Retype new password: 
passwd: all authentication tokens updated successfully.
[root@localhost testuser]#

2、passwd 命令,命令行修改:

[root@localhost testuser]# echo '!@#$5678'|passwd --stdin testuser

3、chpasswd 命令,命令行修改

[root@localhost testuser]# echo 'testuser:!@#$5678'|chpasswd

相关免费学习推荐:linux视频教程

以上就是linux如何修改密码的详细内容,更多请关注其它相关文章!

相关标签: linux 修改密码