Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
b3595a34
Unverified
Commit
b3595a34
authored
May 15, 2018
by
Christian Brauner
Committed by
GitHub
May 15, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2326 from tenforward/japanese
Update Japanese man pages
parents
9ab207ca
15c22687
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
14 deletions
+36
-14
lxc-execute.sgml.in
doc/ja/lxc-execute.sgml.in
+18
-0
lxc.container.conf.sgml.in
doc/ja/lxc.container.conf.sgml.in
+18
-14
No files found.
doc/ja/lxc-execute.sgml.in
View file @
b3595a34
...
@@ -56,6 +56,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
...
@@ -56,6 +56,7 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
<cmdsynopsis>
<cmdsynopsis>
<command>lxc-execute</command>
<command>lxc-execute</command>
<arg choice="req">-n <replaceable>name</replaceable></arg>
<arg choice="req">-n <replaceable>name</replaceable></arg>
<arg choice="opt">-d</arg>
<arg choice="opt">-f <replaceable>config_file</replaceable></arg>
<arg choice="opt">-f <replaceable>config_file</replaceable></arg>
<arg choice="opt">-s KEY=VAL</arg>
<arg choice="opt">-s KEY=VAL</arg>
<arg choice="opt">-- <replaceable>command</replaceable></arg>
<arg choice="opt">-- <replaceable>command</replaceable></arg>
...
@@ -157,6 +158,23 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
...
@@ -157,6 +158,23 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
<varlistentry>
<term>
<option>-d, --daemon</option>
</term>
<listitem>
<para>
<!--
Run the container as a daemon. As the container has no
more tty, if an error occurs nothing will be displayed,
the log file can be used to check the error.
-->
コンテナをデーモンとして実行します。コンテナには TTY がありませんので、エラーが発生した場合は何も表示されません。エラーのチェックにはログファイルを使用すると良いでしょう。
</para>
</listitem>
</varlistentry>
<varlistentry>
<varlistentry>
<term><option>--</option></term>
<term><option>--</option></term>
<listitem>
<listitem>
...
...
doc/ja/lxc.container.conf.sgml.in
View file @
b3595a34
...
@@ -1065,23 +1065,25 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
...
@@ -1065,23 +1065,25 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
ringbuffer. Note that ringbuffer must be at least as big as a
ringbuffer. Note that ringbuffer must be at least as big as a
standard page size. When passed a value smaller than a single page
standard page size. When passed a value smaller than a single page
size liblxc will allocate a ringbuffer of a single page size. A page
size liblxc will allocate a ringbuffer of a single page size. A page
size is usually 4
k
B.
size is usually 4
K
B.
-->
-->
このオプションを設定すると、liblxc はインメモリのリングバッファを割り当てます。コンテナのコンソールはリングバッファに出力されます。リングバッファは少なくとも標準ページサイズの大きさでなければなりません。ページサイズより小さい値を与えた場合は、liblxc はページサイズのリングバッファを割り当てます。ページサイズは通常は 4
k
B です。
このオプションを設定すると、liblxc はインメモリのリングバッファを割り当てます。コンテナのコンソールはリングバッファに出力されます。リングバッファは少なくとも標準ページサイズの大きさでなければなりません。ページサイズより小さい値を与えた場合は、liblxc はページサイズのリングバッファを割り当てます。ページサイズは通常は 4
K
B です。
<!--
<!--
The keyword 'auto' will cause liblxc to allocate a ringbuffer of
The keyword 'auto' will cause liblxc to allocate a ringbuffer of
128
k
B.
128
K
B.
-->
-->
'auto' を指定すると、liblxc は 128
k
B のリングバッファを割り当てます。
'auto' を指定すると、liblxc は 128
K
B のリングバッファを割り当てます。
<!--
<!--
When manually specifying a size for the ringbuffer the value should
When manually specifying a size for the ringbuffer the value should
be a power of 2 when converted to bytes. Valid size prefixes are
be a power of 2 when converted to bytes. Valid size prefixes are
'kB', 'MB', 'GB'. (Note that all conversions are based on multiples
'KB', 'MB', 'GB'. (Note that all conversions are based on multiples
of 1024. That means 'kb' == 'KiB', 'MB' == 'MiB', 'GB' == 'GiB'.)
of 1024. That means 'Kb' == 'KiB', 'MB' == 'MiB', 'GB' == 'GiB'.
Additionally, the case of the suffix is ignored, i.e. 'kB', 'KB' and
'Kb' are treated equally.)
-->
-->
リングバッファサイズを数値指定する場合、値がバイトに変換されるときに 2 の累乗になります。サイズ接頭辞付きの単位として '
kB'、'MB'、'GB' が使えます。(この場合の変換は 1024 の倍数に基づいています。つまり 'kB' == 'KiB'、'MB' == 'MiB'、'GB' == 'GiB' という意味で
す。)
リングバッファサイズを数値指定する場合、値がバイトに変換されるときに 2 の累乗になります。サイズ接頭辞付きの単位として '
KB'、'MB'、'GB' が使えます。(この場合の変換は 1024 の倍数に基づいています。つまり 'KB' == 'KiB'、'MB' == 'MiB'、'GB' == 'GiB' という意味です。加えて、単位の大文字小文字は無視されます。すなわち 'kB'、'KB'、'Kb' は同一に扱われま
す。)
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -1098,23 +1100,25 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
...
@@ -1098,23 +1100,25 @@ by KATOH Yasufumi <karma at jazz.email.ne.jp>
<option>lxc.console.logfile</option>. Note that size of the log file
<option>lxc.console.logfile</option>. Note that size of the log file
must be at least as big as a standard page size. When passed a value
must be at least as big as a standard page size. When passed a value
smaller than a single page size liblxc will set the size of log file
smaller than a single page size liblxc will set the size of log file
to a single page size. A page size is usually 4
k
B.
to a single page size. A page size is usually 4
K
B.
-->
-->
liblxc は <option>lxc.console.logfile</option> で指定したコンソールログのサイズを、このオプションで設定した値に制限します。ログファイルのサイズは少なくとも標準ページサイズでなければなりません。ページサイズ以下の値を設定した場合は、liblxc はログファイルのサイズをページサイズに設定します。ページサイズは通常は 4
k
B です。
liblxc は <option>lxc.console.logfile</option> で指定したコンソールログのサイズを、このオプションで設定した値に制限します。ログファイルのサイズは少なくとも標準ページサイズでなければなりません。ページサイズ以下の値を設定した場合は、liblxc はログファイルのサイズをページサイズに設定します。ページサイズは通常は 4
K
B です。
<!--
<!--
The keyword 'auto' will cause liblxc to place a limit of 128
k
B on
The keyword 'auto' will cause liblxc to place a limit of 128
K
B on
the log file.
the log file.
-->
-->
'auto' を指定すると、liblxc はログファイルのサイズを 128
k
B に制限します。
'auto' を指定すると、liblxc はログファイルのサイズを 128
K
B に制限します。
<!--
<!--
When manually specifying a size for the log file the value should
When manually specifying a size for the log file the value should
be a power of 2 when converted to bytes. Valid size prefixes are
be a power of 2 when converted to bytes. Valid size prefixes are
'kB', 'MB', 'GB'. (Note that all conversions are based on multiples
'KB', 'MB', 'GB'. (Note that all conversions are based on multiples
of 1024. That means 'kb' == 'KiB', 'MB' == 'MiB', 'GB' == 'GiB'.)
of 1024. That means 'KB' == 'KiB', 'MB' == 'MiB', 'GB' == 'GiB'.
Additionally, the case of the suffix is ignored, i.e. 'kB', 'KB' and
'Kb' are treated equally.)
-->
-->
ログファイルサイズの値を数値指定する場合、値がバイトに変換されるときに 2 の累乗になります。サイズ接頭辞付きの単位として 'kB'、'MB'、'GB' が使えます。(この場合の変換は 1024 の倍数に基づいています。つまり 'kB' == 'KiB'、'MB' == 'MiB'、'GB' == 'GiB' という意味です。)
ログファイルサイズの値を数値指定する場合、値がバイトに変換されるときに 2 の累乗になります。サイズ接頭辞付きの単位として 'kB'、'MB'、'GB' が使えます。(この場合の変換は 1024 の倍数に基づいています。つまり 'kB' == 'KiB'、'MB' == 'MiB'、'GB' == 'GiB' という意味です。
加えて、単位の大文字小文字は無視されます。すなわち 'kB'、'KB'、'Kb' は同一に扱われます。
)
<!--
<!--
If users want to mirror the console ringbuffer on disk they should set
If users want to mirror the console ringbuffer on disk they should set
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment