Answers:
您应该能够从chage
实用程序中获取该信息。不需要root即可在列表模式下运行。
注意:这很可能仅适用于passwd
基于本地的身份验证。我不知道它是否可以与不将登录信息放在passwd
/ shadow
文件中的身份验证模式一起使用。我猜这些解决方案提供了它们自己的工具,但对它们一无所知。
$ chage -l test
Last password change : Apr 17, 2012
Password expires : Apr 27, 2012
Password inactive : never
Account expires : May 20, 2012
Minimum number of days between password change : 0
Maximum number of days between password change : 10
Number of days of warning before password expires : 7
我用它来快速登录以显示我的密码过期日期。
grep $(whoami) /etc/password
做什么?
whoami
确实返回了正确的用户名,但我确实认为系统正在使用LDAP。
从中chage
您可以进行多项更改,并且可以了解登录详细信息,如下所示...
Usage: chage [options] [LOGIN]
Options:
-d, --lastday LAST_DAY set date of last password change to LAST_DAY
-E, --expiredate EXPIRE_DATE set account expiration date to EXPIRE_DATE
-h, --help display this help message and exit
-I, --inactive INACTIVE set password inactive after expiration
to INACTIVE
-l, --list show account aging information
-m, --mindays MIN_DAYS set minimum number of days before password
change to MIN_DAYS
-M, --maxdays MAX_DAYS set maximim number of days before password
change to MAX_DAYS
-W, --warndays WARN_DAYS set expiration warning days to WARN_DAYS
如果您具有Root访问权限,则可以更改密码的过期时间,只需编辑..
vim /etc/login.defs
只需设置下面的副词...
PASS_MAX_DAYS 30
PASS_MIN_DAYS 1
PASS_WARN_AGE 7
可能对你有帮助
whoami | xargs chage -l
至试图确保自己没有做错明显的事情。