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 でロックされているユーザーを確認する最良の方法は何ですか? 共有できる経験はありますか?多くのサーバーでチェックするスクリプトを作成したいので、おそらくシェルスクリプトまたはPerlで何かを作成する必要がありますが、1つのサーバーから実行して、他のすべてのサーバーにアクセスする必要があると思います.
ありがとうございます!
これを試して:
getent passwd | cut -d: -f1 | xargs -n1 passwd -S
ロックされたアカウントはLK、2 列目に で示されます。
LK