ユーザーの追加2012/04/27 |
[1] | インストール直後はインストール中に設定したユーザーのみがシステム上にあり、同時に管理者ユーザーとなっています。 そこへユーザーを新たに追加する場合は以下のようにします。 |
pangolin@dlp:~$ # ユーザー「ubuntu」を追加 [sudo] password for pangolin: # 自身のパスワード Adding user `ubuntu' ... Adding new group `ubuntu' (1001) ... Adding new user `ubuntu' (1001) with group `ubuntu' ... Creating home directory `/home/ubuntu' ... 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 pangolin@dlp:~$ |
[2] | 追加したユーザーにも管理者権限を与える場合は以下のようにします。 |
# 21行目あたり:adminグループに該当ユーザーを追記 sudo:x:27:pangolin ,ubuntu
su - ubuntu Password: To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.
pangolin@dlp:~$ # 管理者権限が必要なコマンド実行してみる [sudo] password for ubuntu: # 'ubuntu'ユーザーのパスワード入力 ubuntu@dlp:~$ Broadcast message from root@dlp (/dev/pts/0) at 22:25 ...
# 成功 |
Sponsored Link |