Skip to content

Instantly share code, notes, and snippets.

@ishtaka
Created March 4, 2014 06:15
Show Gist options
  • Select an option

  • Save ishtaka/ce9f322a24a07b9a6569 to your computer and use it in GitHub Desktop.

Select an option

Save ishtaka/ce9f322a24a07b9a6569 to your computer and use it in GitHub Desktop.
[CentOS]ユーザの追加・削除
# 一般ユーザ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