Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
检查哪些用户被锁定在 Linux/Unix 中的最佳方法是什么?有没有人有经验可以分享?我想创建一个脚本来在许多服务器中检查它,因此,我可能需要在 shell 脚本或 Perl 中创建一些东西,但它需要从一台服务器运行并访问我猜想的所有其他服务器。
先谢谢了!
尝试这个:
getent passwd | cut -d: -f1 | xargs -n1 passwd -S
锁定的帐户LK在第二列中用 表示。
LK