Last active
January 8, 2017 07:36
-
-
Save nishinoshake/9c9cf9a26ec446b3531c55cfdb23954e to your computer and use it in GitHub Desktop.
グループの作成と追加
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
# 作成 | |
groupadd git | |
# 追加 | |
# -a --append | |
# -G --groups | |
usermod -aG group user | |
# ユーザ作成時に追加 | |
useradd -g group user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment