2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-02 15:05:16 +00:00

reword a bit. Change startup to 'start up', reformat, put versions needed in one place not 3

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1543 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
Michael Graff
2010-03-18 21:50:04 +00:00
parent 9b8e90e361
commit c8575d7aab
2 changed files with 55 additions and 55 deletions

View File

@@ -1,31 +1,40 @@
body { body {
background-color: #ffffff; background-color: #ffffff;
color: #333333; color: #333333;
font-family: "ArialMT", "Verdana", "Arial", "Helvetica", sans-serif; font-family: "ArialMT", "Verdana", "Arial", "Helvetica", sans-serif;
font-size: 14px; font-size: 14px;
line-height: 18px; line-height: 18px;
margin: 2em; margin: 2em;
} }
.command { .command {
font-family: "Courier New", "Courier", monospace; font-family: "Courier New", "Courier", monospace;
font-weight: normal; font-weight: normal;
} }
.note { .note {
background-color: #ddeedd; background-color: #ddeedd;
border: 1px solid #aaccaa; border: 1px solid #aaccaa;
margin: 1em 0 1em 0; margin: 1em 0 1em 0;
padding: 0.5em 1em 0.5em 1em; padding: 0.5em 1em 0.5em 1em;
-moz-border-radius: 10px; -moz-border-radius: 10px;
-webkit-border-radius: 10px; -webkit-border-radius: 10px;
} }
.screen { .screen {
background-color: #ffffee; background-color: #ffffee;
border: 1px solid #ddddaa; border: 1px solid #ddddaa;
padding: 0.25em 1em 0.25em 1em; padding: 0.25em 1em 0.25em 1em;
margin: 1em 0 1em 0; margin: 1em 0 1em 0;
-moz-border-radius: 10px; -moz-border-radius: 10px;
-webkit-border-radius: 10px; -webkit-border-radius: 10px;
}
h3 {
text-decoration: underline;
}
h4 {
text-decoration: underline;
font-weight: normal;
} }

View File

@@ -397,6 +397,15 @@ var/
environment is not recommended. environment is not recommended.
</para> </para>
<note>
<para>
When using source code retrieved via Subversion additional
software will be required: automake (v1.11 or newer),
libtoolize, and autoconfigure (2.59 or newer).
These may need to be installed.
</para>
</note>
<para> <para>
The latest development code, including temporary experiments The latest development code, including temporary experiments
and un-reviewed code, is available via the BIND 10 code revision and un-reviewed code, is available via the BIND 10 code revision
@@ -412,38 +421,21 @@ var/
<screen>$ <userinput>svn co svn://bind10.isc.org/svn/bind10/trunk</userinput></screen> <screen>$ <userinput>svn co svn://bind10.isc.org/svn/bind10/trunk</userinput></screen>
</para> </para>
<section> <para>
<title>Generate configuration files</title> When checking out the code from
<para> the code version control system, it doesn't include the
When checking out the code from generated configure script, Makefile.in files, nor the
the code version control system, it doesn't include the related configure files.
generated configure script, Makefile.in files, nor the They can be created by running <command>autoreconf</command>
related configure files. with the <option>--install</option> switch.
They can be created by running <command>autoreconf</command> This will run <command>autoconf</command>,
with the <option>--install</option> switch. <command>aclocal</command>,
This will run <command>autoconf</command>, <command>libtoolize</command>,
<command>aclocal</command>, <command>autoheader</command>,
<command>libtoolize</command>, <command>automake</command>,
<command>autoheader</command>, and related commands.
<command>automake</command>, </para>
and related commands.
</para>
<para>
This requires <command>autoconf</command> version 2.59 or newer
and <command>automake</command> version 1.10 or better.
(For working Python 3.1 tests, <command>automake</command>
version 1.11 or better is needed or use the
<option>--with-pythonpath</option> configure option described
below).
</para>
<note>
<para>
Some operating systems do not provide these in their
default installation nor standard packages collections.
You may need to install them separately.
</para>
</note>
</section>
</section> </section>
@@ -637,11 +629,10 @@ var/
module, if only to send information about themselves somewhere, module, if only to send information about themselves somewhere,
but more importantly to ask about their own settings, and but more importantly to ask about their own settings, and
about other modules. about other modules.
The <command>bind10</command> master process will also startup The <command>bind10</command> master process will also start up
<command>b10-cmdctl</command> for admins to communicate with the <command>b10-cmdctl</command> for admins to communicate with the
system, <command>b10-auth</command> for Authoritative DNS service, system, <command>b10-auth</command> for Authoritative DNS service,
and <command>b10-xfrin</command> for inbound DNS zone transfers. and <command>b10-xfrin</command> for inbound DNS zone transfers.
(These are covered in upcoming chapters.)
</para> </para>
<section id="start"> <section id="start">