CentOS 7
Sponsored Link

初期設定 : 一般ユーザー追加2014/07/08

[1] 一般ユーザーを追加する場合は以下のように設定します。
[root@localhost ~]#
useradd cent

[root@localhost ~]#
passwd cent

Changing password for user cent.
New UNIX password:              # 設定したいパスワードを入力
Retype new UNIX password:       # パスワード再入力
passwd: all authentication tokens updated successfully.
[2] root ユーザーアカウント(管理者ユーザー)にスイッチする場合は以下のようにします。 誤操作を避けるため、必要がある時のみ rootユーザーにスイッチして作業しましょう。
localhost login: cent          # ログインユーザー名を入力
password:                      # パスワード入力
[cent@localhost ~]$
su -
     
# rootユーザーに遷移

Password:                      # rootパスワード入力
[root@localhost ~]#            # rootユーザーに遷移完了
[3] root ユーザーアカウントにスイッチ可能なユーザーを限定します。例として [1] で追加した cent のみに限定するには以下のように設定します。
[root@localhost ~]#
usermod -aG wheel cent

[root@localhost ~]#
vi /etc/pam.d/su
#%PAM-1.0
auth            sufficient      pam_rootok.so
# Uncomment the following line to implicitly trust users in the "wheel" group.
#auth           sufficient      pam_wheel.so trust use_uid
# Uncomment the following line to require a user to be in the "wheel" group.
# 以下の行頭の#を削除しコメント解除

auth            required        pam_wheel.so use_uid
auth            substack        system-auth
auth            include         postlogin
account         sufficient      pam_succeed_if.so uid = 0 use_uid quiet
account         include         system-auth
password        include         system-auth
session         include         system-auth
session         include         postlogin
session         optional        pam_xauth.so
[4] root ユーザー宛に送られてくるメールを一般ユーザーに転送するには以下のように設定します。(例として [cent] ユーザーに転送)
[root@localhost ~]#
vi /etc/aliases
# Person who should get root's mail
# 最終行頭の#を削除し転送するユーザー名に変更

root:
cent
# 設定の変更を反映

[root@localhost ~]#
[5] システムからユーザーを削除する場合は以下のように設定します。
# [cent] ユーザー削除 (ユーザーの削除のみ)

[root@localhost ~]#
userdel cent
# [cent] ユーザー削除 (ホームディレクトリも削除)

[root@localhost ~]#
userdel -r cent
関連コンテンツ