Code Listing3.1: Using useradd コード表示3.1:useraddの使用 - Gentoo Linux
We use useradd and passwd for these tasks.In the next example, we create a user called "john".
この作業にはuseraddコマンドとpasswdコマンドを使用します。 次の例では、"john"というユーザを作成します。 - Gentoo Linux
# useradd -m -G users,audio,wheel username This will add a user named "username".
このコマンドは、"username"という名前のユーザを作成します。 - Gentoo Linux
For instance, to create a user called john who is member of the wheel, users and audio groups, log in as root first (only root can create users) and run useradd: 例えば、wheel、usersそしてaudioグループに所属するjohnというユーザを作るときには、まずrootでログインして(rootだけがユーザを作ることができます)useraddを実行します。 - Gentoo Linux