仁王3 数字豪华版 终极战国合集 全DLC中文 联机+修改器 免装直启
2026/7/8 5:54:20
PAM(Pluggable Authentication Modules)是Linux系统中一个强大且通用的安全工具,可用于创建策略来保障用户认证工具的安全。
我们可以通过以下命令对用户账户进行操作,例如查看用户Samantha的密码状态:
# passwd -S Samantha Samantha PS 2016-03-09 0 99999 7 -1 (Password set, SHA512 crypt.)若要锁定该用户账户,可使用usermod -L命令:
# usermod -L Samantha # passwd -S Samantha Samantha LK 2016-03-09 0 99999 7 -1 (Password locked.)若要解锁该用户账户,则使用usermod -U命令:
# usermod -U Samantha # passwd -S Samantha Samantha PS 2016-03-09 0 99999 7 -1 (Password set, SHA512 crypt.)