user1046658 Asked: 2020-02-22 14:56:45 +0800 CST2020-02-22 14:56:45 +0800 CST 2020-02-22 14:56:45 +0800 CST 如何撤消用户模式 -e? 772 我正在使用 Ubuntu 18.04。 我使用了命令 usermod -e YYYY_MM_DD user 现在,用户的帐户已过期。 我可以使用什么命令来删除用户帐户的到期日期? command-line 1 个回答 Voted Best Answer steeldriver 2020-02-22T15:30:28+08:002020-02-22T15:30:28+08:00 您可以通过再次运行来撤消它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.
您可以通过再次运行来撤消它
usermod -e
,这次传递一个空字符串来代替EXPIRE_DATE
字符串 ex。来自
man usermod
: