Ubuntuサーバー仮想マシンでuseradd
コマンドを使用して新しいユーザー(testuser)を作成しました。ユーザーのホームディレクトリを作成し、ルート権限を付与します。
しかし、新しいユーザーとしてログインすると、ホームディレクトリがないというメッセージが表示されます。何が悪いのですか?
最後に私は自分を終えました
これが答えです
useradd -m -d /home/testuser/ -s /bin/bash -G Sudo testuser
useradd
プログラムはadduser
を支持して廃止されました。 man useradd
から:
useraddは、ユーザーを追加するための低レベルのユーティリティです。 Debianでは
管理者は通常、代わりにadduser(8)を使用する必要があります。
adduser
はuseradd
のフレンドリーなフロントエンドであり、デフォルトでユーザーディレクトリの作成などを行います。引数としてユーザー名のみを指定して実行すると、パスワードなどの追加情報を提供するように求められます。
$ 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.
useradd -m LOGIN
ユーザーのホームディレクトリを作成します