|
59.
|
|
|
The <command>addgroup</command> command is used to create a new group on the system. To create a new group, type: <screen>addgroup newgroup</screen> The above command will create a new group called <emphasis role="strong">newgroup</emphasis>.
|
|
|
|
<command>addgroup</command>コマンドは、グループ(group)を新規に作成する時に使います。新しいグループを作成するには、 <screen>addgroup newgroup</screen>と入力してください。 <emphasis role="strong">newgroup</emphasis>という名前の新しいグループを作成されます。
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:320(para)
|
|
60.
|
|
|
Adding A New User
|
|
|
|
新規ユーザを追加
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:329(title)
|
|
61.
|
|
|
The <command>adduser</command> is used to create new users on the system. To create a new user, type: <screen>adduser newuser</screen> The above command will create a new user called <emphasis role="strong">newuser</emphasis>.
|
|
|
|
<command>adduser</command>は、新規ユーザをシステム上に追加するのに使います。新規ユーザを作成するには、<screen>adduser newuser</screen>と入力してください。 <emphasis role="strong">newuser</emphasis>という名前のユーザが作成されます。
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:330(para)
|
|
62.
|
|
|
To assign a password for the new user use the <command>passwd</command> command: <screen>passwd newuser</screen>
|
|
|
|
新規ユーザにパスワードを指定するには、<command>passwd</command>コマンドを以下のように使用します。: <screen>passwd newuser</screen>
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:337(para)
|
|
63.
|
|
|
Finally, to assign the new user to the new group, type: <screen>adduser newuser newgroup</screen>
|
|
|
|
最後に、新規ユーザ作成と新規グループへの割り当てを同時に行うには、<screen>adduser newuser newgroup</screen>のように入力します。
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:343(para)
|
|
64.
|
|
|
Options
|
|
|
|
オプション
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:351(title)
|
|
65.
|
|
|
The default behavior for a command may usually be modified by adding a <emphasis role="strong">-- <emphasis>option</emphasis></emphasis> to the command. The <link linkend="ls"><command>ls</command></link> command, for example, has a <emphasis role="strong">-s</emphasis> option so that <command>ls -s</command> will include file sizes in the listing. There is also a <emphasis role="strong">-h</emphasis> option to get those sizes in a "human readable" format.
|
|
|
|
コマンドに割り当てられている既定の動作は<emphasis role="strong">-- <emphasis>オプション</emphasis></emphasis>をコマンドに追加することで変更可能です。例えば、<link linkend="ls"><command>ls</command></link> コマンドは<emphasis role="strong">-s</emphasis>オプションを追加(<command>ls -s</command>)することで、表示内容にファイルサイズを追加します。さらに<emphasis role="strong">-h</emphasis>オプションを追加することで、人間が読みやすい(=human readable)フォーマットで表示することができます。
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:352(para)
|
|
66.
|
|
|
Options can be grouped in clusters so <screen>ls -sh</screen> is exactly the same command as <screen>ls -s -h</screen> Most options have a long version, prefixed with two dashes instead of one, so even <screen>ls --size --human-readable</screen> is the same command.
|
|
|
|
複数のオプションを<screen>ls -sh</screen>のようにまとめて表現することもできます。これは、<screen>ls -s -h</screen>と全く同じ意味になります。大半のオプションにはロングバージョンがあり短縮版と区別するために、ハイフン(-)が2つ付いたものになっています。さきの表現を用いれば、<screen>ls --size --human-readable</screen>のようになります。
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:363(para)
|
|
67.
|
|
|
"Man" and getting help
|
|
|
|
"Man"とヘルプ
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:374(title)
|
|
68.
|
|
|
<emphasis role="strong"><emphasis>command</emphasis> --help</emphasis> and <emphasis role="strong">man <emphasis>command</emphasis></emphasis> are the two most important tools at the command line.
|
|
|
|
<emphasis role="strong"><emphasis>コマンド名</emphasis> --help</emphasis>と<emphasis role="strong">man<emphasis>コマンド名</emphasis></emphasis>の二つは、コマンドラインを使用する際に最も重要なツールです。
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:375(para)
|