0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linux (ユーザーの追加・削除について)

Last updated at Posted at 2020-08-29

前回はユーザーについての解説を行いました。

こちらではユーザーアカウントの追加・削除について学んでいきましょう。
基本的にはrootでユーザー関連の操作を行いますので、前回学習したsu/sudoコマンドを使用してユーザーの作成を行いましょう。

useraddについて

さっそくユーザーの作成を行いましょう。useraddコマンドを使用します。
root    #  useradd neko

上記のコマンドを入力する事でnekoユーザーが作成されます。
ユーザーが作成された際は、/etc/passwdの中身を確認して
作成されているかの確認を行いましょう。

cat /etc/passwd

一番最後の行に、nekoユーザーが表示されます。

passwdについて

作成したユーザーのパスワード設定を行いましょう。passwdコマンドを使用します。 こちらもroot権限が必要になります。
root    #  passwd neko

上記のコマンドでパスワード設定を行えます。
以降、ログインするユーザーを選択する際にnekoユーザーでログインする事が可能となります。

userdelについて

ユーザーの削除はuserdelで行います。 ユーザーのホームディレクトリも削除しますので、-r(remove)オプションも使用しましょう。 くどいですが、root権限で行います。
root    #  userdel -r neko

/etc/passwdを確認し、削除されているかの確認を行いましょう。

以上、、

  • useradd
  • passwd
  • userdel

ユーザーについてでした。

次は→グループについて

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?