解决"authentication token manipulation error",无法修改密码

背景:  Linux16

解决办法:

root登录系统后,修改密码时出现"authentication token manipulation error"

This is the result of trying to work on a file system while mounted as read-only. The solution is a simple one. Before making changes to the users password mount the filesystem as read-write which allows for the necessary changes to be made.

mount -o rw,remount /
Now try to change the users passwords again.

执行 mount -o rw,remount /  (执行后没有任何提示)即可修改

猜你喜欢

转载自blog.csdn.net/weixin_42803662/article/details/83651970