Created
March 4, 2014 06:15
-
-
Save ishtaka/ce9f322a24a07b9a6569 to your computer and use it in GitHub Desktop.
[CentOS]ユーザの追加・削除
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 一般ユーザuserの作成 | |
| useradd user | |
| # passwd centos ← centosのパスワード設定 | |
| passwd user | |
| # New UNIX password: ← centosのパスワード応答 | |
| # Retype new UNIX password: ← centosのパスワード応答(確認) | |
| # ユーザuserの削除 | |
| userdel -r user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment