web-dev-qa-db-ja.com

新しいユーザーを作成してもホームディレクトリが作成されないのはなぜですか?

Ubuntuサーバー仮想マシンでuseraddコマンドを使用して新しいユーザー(testuser)を作成しました。ユーザーのホームディレクトリを作成し、ルート権限を付与します。

しかし、新しいユーザーとしてログインすると、ホームディレクトリがないというメッセージが表示されます。何が悪いのですか?

17
Beginner

最後に私は自分を終えました

これが答えです

   useradd -m -d /home/testuser/ -s /bin/bash -G Sudo testuser
24
Beginner

useraddプログラムはadduserを支持して廃止されました。 man useraddから:

useraddは、ユーザーを追加するための低レベルのユーティリティです。 Debianでは
管理者は通常、代わりにadduser(8)を使用する必要があります

adduseruseraddのフレンドリーなフロントエンドであり、デフォルトでユーザーディレクトリの作成などを行います。引数としてユーザー名のみを指定して実行すると、パスワードなどの追加情報を提供するように求められます。

$ Sudo adduser testuser
Adding user `testuser' ...
Adding new group `testuser' (1002) ...
Adding new user `testuser' (1002) with group `testuser' ...
Creating home directory `/home/testuser' ...
Copying files from `/etc/skel' ...
Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
Changing the user information for testuser
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] 

一般に、必要なグループも自動的に設定されるため、adduserではなく常にuseraddを使用する必要があります。 man adduserで説明されているように:

   adduser  and  addgroup  add users and groups to the system according to
   command    line    options    and    configuration    information    in
   /etc/adduser.conf.   They  are  friendlier  front ends to the low level
   tools like useradd, groupadd and usermod programs, by default  choosing
   Debian  policy conformant UID and GID values, creating a home directory
   with skeletal configuration, running a custom script,  and  other  fea‐
   tures. 
22
terdon
useradd -m LOGIN

ユーザーのホームディレクトリを作成します

5
Nizam Mohamed