|
51.
|
|
|
lsb_release
|
|
|
|
lsb_release
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:289(title)
|
|
52.
|
|
|
The <emphasis role="strong">lsb_release</emphasis> command with the <emphasis role="strong">-a</emphasis> option prints version information for the Linux release you're running. For example, typing: <screen>lsb_release -a</screen> will give you: <screen>
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 7.10
Release: 7.10
Codename: gutsy</screen>
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
|
<emphasis role="strong">lsb_release</emphasis>コマンドに <emphasis role="strong">-a</emphasis>オプションをつけると、実行中の Linux バージョン情報を表示します。たとえば、<screen>lsb_release -a</screen>と入力すると、<screen>
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 7.10
Release: 7.10
Codename: gutsy</screen>
と表示されます。
|
|
Translated and reviewed by
CMasami
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:341(para)
|
|
53.
|
|
|
ifconfig
|
|
|
|
ifconfig
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:359(title)
|
|
54.
|
|
|
The <command>ifconfig</command> command reports on your system's network interfaces (<acronym>ifconfig</acronym> stand for "interface config").
|
|
|
|
<command>ifconfig</command>コマンドはネットワーク・インターフェースの情報を表示します(<acronym>ifconfig</acronym> は"interface config"の略)。
|
|
Translated and reviewed by
CMasami
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:360(para)
|
|
55.
|
|
|
<command>ifconfig</command> is commonly used to find out the IP address of your computer on its network or the internet. To find this information easily type: <screen>ifconfig | grep "inet addr"</screen>
|
|
|
|
<command>ifconfig</command> はあなたのコンピュータの IP アドレスを調べるためによく使います。IP アドレスだけを表示するには次のように入力します: <screen>ifconfig | grep "inet addr"</screen>
|
|
Translated and reviewed by
CMasami
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:365(para)
|
|
56.
|
|
|
Executing Commands with Elevated Privileges
|
|
|
|
管理者権限を伴うコマンドの実行
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:309(title)
|
|
57.
|
|
|
The following commands will need to be prefaced with the <command>sudo</command> command. Please see <ulink url="https://help.ubuntu.com/community/RootSudo">RootSudo</ulink> for information on using <command>sudo</command>.
|
|
|
|
次にあげるコマンドを使用する際は、コマンドの先頭に(先に)<command>sudo</command>コマンドを付けて実行する必要があります。<command>sudo</command>の使用方法に関する情報は<ulink url="https://help.ubuntu.com/community/RootSudo">RootSudo</ulink>をご覧ください。
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:310(para)
|
|
58.
|
|
|
Adding a New Group
|
|
|
|
グループの追加
|
|
Translated and reviewed by
Jun Sumida
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:319(title)
|
|
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)
|