如何创建已禁用的帐户?例如,当尝试以 身份登录时nobody
,
root@miniubuntu1804:/home/hans/projects/evaler/src# su nobody
This account is currently not available.
我如何创建这样的帐户?
答案1
adduser --shell=/usr/sbin/nologin disabledUser
也可以使用--shell=/bin/false
(它们之间有什么区别?不知道具体是什么,但你大概可以在https://unix.stackexchange.com/questions/10852/whats-the-difference-between-sbin-nologin-and-bin-false)