Debian 10 Buster
Sponsored Link

初期設定 : ユーザーを新規追加する2019/07/10

[1] ユーザーを新規追加する場合は以下のように設定します。
# ユーザー [buster] を追加

root@dlp:~#
adduser buster

Adding user `buster' ...
Adding new group `buster' (1001) ...
Adding new user `buster' (1001) with group `buster' ...
Creating home directory `/home/buster' ...
Copying files from `/etc/skel' ...
New password:            # ユーザーのパスワードを設定
Retype new password:     # 確認再入力
passwd: password updated successfully
Changing the user information for buster
Enter the new value, or press ENTER for the default
        Full Name []:    # 必要であれば入力 (不要の場合は空EnterでOK)
        Room Number []:
        Work Phone []:
        Home Phone []:
        Other []:
Is the information correct? [Y/n] y
root@dlp:~#
[2] root ユーザーにスイッチ可能なユーザーを制限する場合は以下のように設定します。
例として [buster] ユーザーのみに限定します。
root@dlp:~#
usermod -aG adm buster

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

auth       required   pam_wheel.so group=adm
[3] システムからユーザーを削除する場合は以下のように設定します。
# [buster] ユーザー削除 (ユーザーの削除のみ)

ubuntu@dlp:~$
deluser buster
# [buster] ユーザー削除 (ホームディレクトリも合わせて削除)

ubuntu@dlp:~$
deluser buster --remove-home
関連コンテンツ