Linuxでは、ユーザーの追加と削除を行うことができます。
やすひら
ユーザーの追加/削除方法を紹介します
この記事でわかること
- ユーザーの追加方法
- ユーザーの削除方法
目次
ユーザーの追加方法
ユーザーの追加方法を紹介します。
STEP
ユーザーを新規追加
ユーザーを追加します。
STEP
パスワードを設定
ユーザーのパスワードを設定します。
STEP
アクセス権限を設定
ユーザーのアクセス権限を設定します。
ユーザーを新規追加
ユーザーを新規追加します。
コマンド実行例
$ sudo adduser hogehoge
[sudo] password for user:
Adding user `hogehoge' ...
Adding new group `hogehoge' (1006) ...
Adding new user `hogehoge' (1002) with group `hogehoge' ...
Creating home directory `/home/hogehoge' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for hogehoge
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n] Y
パスワードを設定
ユーザーにパスワードを設定します。
コマンド実行例
$ sudo passwd hogehoge
[sudo] password for user:
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
アクセス権限を設定
ユーザーにアクセス権限を設定します。
参考ユーザーの所属グループを確認
参考ユーザーの所属グループを確認します。
コマンド実行例
$ groups superuser
superuser : superuser sudo
アクセス権限を設定
ユーザーにアクセス権限を設定します。
コマンド実行例
$ groups hogehoge
hogehoge : hogehoge
$ sudo gpasswd -a hogehoge sudo
[sudo] password for user:
Adding user hogehoge to group sudo
$ groups hogehoge
hogehoge : hogehoge sudo
ユーザーの削除方法
ユーザーの削除方法を紹介します。
STEP
システムを再起動
削除対象ユーザーが使用中のプロセスがある場合は、ユーザーを削除できないため、システムを再起動します。
STEP
ユーザーを削除
ユーザーを削除します。
システムを再起動
システムを再起動します。
コマンド実行例
$ reboot
ユーザーを削除
ユーザーを削除します。
コマンド実行例
$ sudo deluser --remove-home user
[sudo] password for hogehoge:
Looking for files to backup/remove ...
Removing user `user' ...
Warning: group `user' has no more members.
Done.
まとめ
Linuxのユーザーの追加/削除方法を紹介しました。
ユーザー追加は
- ユーザーを追加する
- パスワードを設定する
- アクセス権限を付与する
ユーザー削除は
- システムを再起動して削除準備をする
- ユーザーを削除する
Linuxではユーザーの追加/削除ができます。
LinuxのOSインストール直後はrootユーザーがデフォルト設定されている場合もあり、任意のユーザーを追加する必要があります。
LinuxのOSインストール直後に設定しておきたい、設定事項の1つです。