logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Manage Linux Passwords - Control User Policies with lchage | Online Free DevTools by Hexmos

Control Linux user password policies with lchage. Manage password expiration, enforce password changes, and set warning periods. Free online tool, no registration required.

lchage

Display or change user password policy. More information: https://manned.org/lchage.

  • Disable password expiration for the user:

sudo lchage --date -1 {{username}}

  • Display the password policy for the user:

sudo lchage --list {{username}}

  • Require password change for the user a certain number of days after the last password change:

sudo lchage --maxdays {{number_of_days}} {{username}}

  • Start warning the user a certain number of days before the password expires:

sudo lchage --warndays {{number_of_days}} {{username}}

See Also