我正在使用 Ubuntu 18.04。
我使用了命令
usermod -e YYYY_MM_DD user
现在,该用户的账户已经过期。
我可以输入什么命令来删除用户帐户的到期日期?
答案1
您可以通过usermod -e
再次运行来撤消它,这次传递一个空字符串来代替EXPIRE_DATE
字符串 ex。
sudo usermod -e '' user
从man usermod
:
-e, --expiredate EXPIRE_DATE The date on which the user account will be disabled. The date is specified in the format YYYY-MM-DD. An empty EXPIRE_DATE argument will disable the expiration of the account.