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