Debian 8 Jessie
Sponsored Link

ユーザーを追加する2015/05/01

[1] ユーザーを新たに追加する場合は以下のようにします。
# ユーザー「debian」を追加

root@dlp:~#
adduser debian

Adding user `debian' ...
Adding new group `debian' (1001) ...
Adding new user `debian' (1001) with group `debian' ...
Creating home directory `/home/debian' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:    
# 追加するユーザーのパスワードを設定

Retype new UNIX password:    
# 確認再入力

passwd: password updated successfully
Changing the user information for ubuntu
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 ユーザーにスイッチ可能なユーザーを制限する場合は以下のように設定します。 例として「debian」ユーザーのみに限定します。
root@dlp:~#
usermod -G adm debian

root@dlp:~#
vi /etc/pam.d/su
# 15行目:コメント解除しグループ名追記

auth   required   pam_wheel.so  
group=adm
関連コンテンツ