ユーザーを追加する2017/06/18 |
[1] | ユーザーを新規追加する場合は以下のように設定します。 |
# ユーザー [stretch] を追加 root@dlp:~# adduser stretch Adding user `stretch' ... Adding new group `stretch' (1001) ... Adding new user `stretch' (1001) with group `stretch' ... Creating home directory `/home/stretch' ... Copying files from `/etc/skel' ... Enter new UNIX password: # 追加するユーザーのパスワードを設定 Retype new UNIX password: # 確認再入力 passwd: password updated successfully Changing the user information for stretch Enter the new value, or press ENTER for the default Full Name []: # 必要であれば入力, なければ空Enter Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y root@dlp:~# |
[2] | root ユーザーにスイッチ可能なユーザーを制限する場合は以下のように設定します。 例として [stretch] ユーザーのみに限定します。 |
root@dlp:~# usermod -G adm stretch
root@dlp:~#
vi /etc/pam.d/su # 15行目:コメント解除しグループ名追記 auth required pam_wheel.so group=adm
|
Sponsored Link |