Implementing_Web_Proxy_Automatic_Discovery/en-US/Implementing_Web_Proxy_Automatic_Discovery.xml | 15 ++
Linux_Basic_Course/en-US/Linux_Basic_Course.xml | 53 ++++++++++
Makefile | 9 +
3 files changed, 74 insertions(+), 3 deletions(-)
New commits:
commit 335a737443af4ef8c41404916c1032d94eca6f40
Author: Jeroen van Meeuwen (Fedora Unity) <kanarip(a)fedoraunity.org>
Date: Tue Jun 9 09:03:13 2009 +1000
Lay down some frame for LBC
diff --git a/Linux_Basic_Course/en-US/Linux_Basic_Course.xml b/Linux_Basic_Course/en-US/Linux_Basic_Course.xml
index 80ca085..00f3a8e 100644
--- a/Linux_Basic_Course/en-US/Linux_Basic_Course.xml
+++ b/Linux_Basic_Course/en-US/Linux_Basic_Course.xml
@@ -5,6 +5,59 @@
<book>
<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+
+ <chapter id="Linux_Basic_Course-Introduction">
+
+ <title>Introduction</title>
+ <para>
+ This book is an introduction to the Linux Operating System.
+ </para>
+ </chapter>
+
+ <chapter id="Linux_Basic_Course-Introduction_to_Linux">
+ <title>Introduction to Linux</title>
+ <para>
+ This chapter is an introduction to Linux, introducing various types of Linux distributions, yada yada
+ </para>
+
+ <section id="Linux_Basic_Course-Introduction_to_Linux-Choosing_a_Distribution">
+ <title>Choosing a Distribution</title>
+ <para>
+ paragraph
+ </para>
+ </section>
+
+ <section id="Linux_Basic_Course-Introduction_to_Linux-Getting_Linux">
+ <title>Getting Linux</title>
+ <para>
+ paragraph
+ </para>
+ </section>
+
+ <section id="Linux_Basic_Course-Introduction_to_Linux-Prejudices_Against_Linux">
+ <title>Prejudices Against Linux</title>
+ <para>
+ paragraph
+ </para>
+ </section>
+
+ </chapter>
+
+ <chapter id="Linux_Basic_Course-Installing_Updating_and_Removing_Software">
+ <title>Installing, Updating and Removing Software</title>
+ <para>
+ paragraph
+ </para>
+
+ <section id="Linux_Basic_Course-Installing_Updating_and_Removing_Software-Finding_Software">
+ <title>Finding the Software</title>
+ <para>
+ yum search, yum list | grep, apt-cache search
+ </para>
+ </section>
+
+ </chapter>
+
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<index />
</book>
commit 2a48f0eae5630c3e9b00de9c5d992f35f3dc0ae5
Author: Jeroen van Meeuwen (Fedora Unity) <kanarip(a)fedoraunity.org>
Date: Tue Jun 9 09:02:59 2009 +1000
Start on WPAD
diff --git a/Implementing_Web_Proxy_Automatic_Discovery/en-US/Implementing_Web_Proxy_Automatic_Discovery.xml b/Implementing_Web_Proxy_Automatic_Discovery/en-US/Implementing_Web_Proxy_Automatic_Discovery.xml
index f8a778c..d3e7eb1 100644
--- a/Implementing_Web_Proxy_Automatic_Discovery/en-US/Implementing_Web_Proxy_Automatic_Discovery.xml
+++ b/Implementing_Web_Proxy_Automatic_Discovery/en-US/Implementing_Web_Proxy_Automatic_Discovery.xml
@@ -5,7 +5,20 @@
<book>
<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Chapter.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+
+ <chapter id="Implementing_Web_Proxy_Automatic_Discovery-Introduction">
+ <title>Introduction</title>
+ <para>
+ Web Proxy Automatic Discovery, or WPAD, is a standardized method to have clients figure out by themselves where they can find the appropriate Proxy Automatic Configuration script, or PAC script. Given a network environment that has WPAD properly implemented, clients would need to have their browsers configured with the standard "Automatically detect proxy settings for this network". Standard, because that is how browsers are configured by default.
+ </para>
+ <para>
+ Most commonly, network environments used to configure the clients with a script, changing registry settings or configuration files on login or periodically. Later, the alternative for a lot of network environments became Microsoft's Active Directory Group Policy Objects, or GPO. This does not help heterogenous environments though, whether it is Mac OS X, UNIX, Linux or any other *UX.
+ </para>
+ <para>
+ WPAD depends on the capability of the client, the client internet or network application and on the infrastructure. In this document, we'll explain how to implement WPAD, and how to make optimal use of it's advantages.
+ </para>
+ </chapter>
+
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<index />
</book>
commit 892693208ce33ac6c1eb1ebf3ebb10289a14a6ad
Author: Jeroen van Meeuwen (Fedora Unity) <kanarip(a)fedoraunity.org>
Date: Tue Jun 9 09:02:40 2009 +1000
This gets us somewhere
diff --git a/Makefile b/Makefile
index fe68193..1281e57 100644
--- a/Makefile
+++ b/Makefile
@@ -34,5 +34,10 @@ SUBDIRS = Class_Room_Manual Linux_Basic_Course Linux_Advanced_Course Linux_LPI_C
Configuration_Management_Using_Puppet Deploying_Linux_Using_Cobbler Implementing_Web_Proxy_Automatic_Discovery
all:
- for dir in ${SUBDIRS} ; do ( cd $$dir ; ${MAKE} html-en-US html-single-en-US pdf-en-US ) ; done
-
+ for dir in ${SUBDIRS} ; do \
+ ( \
+ cd $$dir ; ${MAKE} html-en-US html-single-en-US pdf-en-US ; \
+ rsync -rlHvz --progress --delete tmp/en-US/html/ pinky.kanarip.com:/data/www/kanarip.com/www/bin/courses/$$dir/ \
+ ) ; \
+ done
+
Class_Room_Manual/Makefile | 6
Configuration_Management_Using_Puppet/Makefile | 2
Deploying_Linux_Using_Cobbler/Makefile | 1
Implementing_Web_Proxy_Automatic_Discovery/Makefile | 1
Linux_Advanced_Course/Makefile | 1
Linux_Basic_Course/Makefile | 1
Linux_LPI_Course_Track/Makefile | 1
Makefile | 4
RHCE_Training/Makefile | 1
RHCE_Training/en-US/Author_Group.xml | 20 -
RHCE_Training/en-US/Book_Info.xml | 51 +-
RHCE_Training/en-US/Preface.xml | 10
RHCE_Training/en-US/RHCE_Training.xml | 380 ++++++++++----------
RHCE_Training/en-US/Revision_History.xml | 38 +-
14 files changed, 263 insertions(+), 254 deletions(-)
New commits:
commit bb4f0694684e888cf252989a914d77c472936887
Author: Jeroen van Meeuwen (Fedora Unity) <kanarip(a)fedoraunity.org>
Date: Mon Jun 8 20:34:21 2009 +1000
Make clean_ids go AWAY! AWAY! BOO!
diff --git a/Class_Room_Manual/Makefile b/Class_Room_Manual/Makefile
index a0c5423..c1ccf22 100644
--- a/Class_Room_Manual/Makefile
+++ b/Class_Room_Manual/Makefile
@@ -7,12 +7,8 @@ BRAND = fedora
# Extra Parameters start here
-int-set:
- cp -a ../en-US/Courses.ent en-US/Class_Room_Manual.ent
-
-html: clean int-set html-en-US
-
# Extra Parameters stop here
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
diff --git a/Configuration_Management_Using_Puppet/Makefile b/Configuration_Management_Using_Puppet/Makefile
index 29a1723..07b3c4b 100644
--- a/Configuration_Management_Using_Puppet/Makefile
+++ b/Configuration_Management_Using_Puppet/Makefile
@@ -14,6 +14,8 @@ BRAND = fedora
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
+
kanarip: pdf-en-US html-single-en-US
rsync -rlHvz --progress --rsh=ssh tmp/en-US/html-single/ pinky:/data/www/kanarip.com/www/bin/courses/puppet/
rsync -rlHvz --progress --rsh=ssh tmp/en-US/pdf/Puppet_Workshop.pdf pinky:/data/www/kanarip.com/www/bin/courses/puppet/puppet.pdf
diff --git a/Deploying_Linux_Using_Cobbler/Makefile b/Deploying_Linux_Using_Cobbler/Makefile
index 1830fcf..b9e3f54 100644
--- a/Deploying_Linux_Using_Cobbler/Makefile
+++ b/Deploying_Linux_Using_Cobbler/Makefile
@@ -14,3 +14,4 @@ BRAND = fedora
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
diff --git a/Implementing_Web_Proxy_Automatic_Discovery/Makefile b/Implementing_Web_Proxy_Automatic_Discovery/Makefile
index f6aac61..ccea361 100644
--- a/Implementing_Web_Proxy_Automatic_Discovery/Makefile
+++ b/Implementing_Web_Proxy_Automatic_Discovery/Makefile
@@ -11,3 +11,4 @@ BRAND = common
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
diff --git a/Linux_Advanced_Course/Makefile b/Linux_Advanced_Course/Makefile
index d9f5d25..67d6b6d 100644
--- a/Linux_Advanced_Course/Makefile
+++ b/Linux_Advanced_Course/Makefile
@@ -11,3 +11,4 @@ BRAND = common
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
diff --git a/Linux_Basic_Course/Makefile b/Linux_Basic_Course/Makefile
index 8d5c60d..5871a1f 100644
--- a/Linux_Basic_Course/Makefile
+++ b/Linux_Basic_Course/Makefile
@@ -11,3 +11,4 @@ BRAND = common
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
diff --git a/Linux_LPI_Course_Track/Makefile b/Linux_LPI_Course_Track/Makefile
index 9180beb..2545e7e 100644
--- a/Linux_LPI_Course_Track/Makefile
+++ b/Linux_LPI_Course_Track/Makefile
@@ -11,3 +11,4 @@ BRAND = common
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
diff --git a/Makefile b/Makefile
index 4ef80ad..59f9437 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,9 @@ BOOKS = Linux_Basic_Course Linux_Advanced_Course Linux_LPI_Course_Track RHCE_Tr
Configuration_Management_Using_Puppet Deploying_Linux_Using_Cobbler Implementing_Web_Proxy_Automatic_Discovery
pre:: get_books set_books
-#clean:: clean_set_books
+clean:: clean_set_books
+
+clean_ids: foo
html: clean html-en-US
diff --git a/RHCE_Training/Makefile b/RHCE_Training/Makefile
index a43cf8e..4b32e47 100644
--- a/RHCE_Training/Makefile
+++ b/RHCE_Training/Makefile
@@ -11,3 +11,4 @@ BRAND = common
COMMON_CONFIG = /usr/share/publican
include $(COMMON_CONFIG)/make/Makefile.common
+clean_ids: foo
commit 212d9644b5238f157b37c79c6b74b3244061b752
Author: Jeroen van Meeuwen (Fedora Unity) <kanarip(a)fedoraunity.org>
Date: Mon Jun 8 20:29:03 2009 +1000
Get this one back into shape
diff --git a/RHCE_Training/en-US/Author_Group.xml b/RHCE_Training/en-US/Author_Group.xml
index 89e3254..1050371 100644
--- a/RHCE_Training/en-US/Author_Group.xml
+++ b/RHCE_Training/en-US/Author_Group.xml
@@ -3,15 +3,15 @@
]>
<authorgroup>
- <author>
- <firstname>Jeroen</firstname>
- <surname>van Meeuwen</surname>
- <lineage>RHCE</lineage>
- <affiliation>
- <orgname>Operator Groep Delft</orgname>
- <orgdiv>Sr. System Engineer</orgdiv>
- </affiliation>
- <email>j.van.meeuwen(a)ogd.nl</email>
- </author>
+ <author>
+ <firstname>Jeroen</firstname>
+ <surname>van Meeuwen</surname>
+ <lineage>RHCE</lineage>
+ <affiliation>
+ <orgname>Operator Groep Delft</orgname>
+ <orgdiv>Sr. System Engineer</orgdiv>
+ </affiliation>
+ <email>j.van.meeuwen(a)ogd.nl</email>
+ </author>
</authorgroup>
diff --git a/RHCE_Training/en-US/Book_Info.xml b/RHCE_Training/en-US/Book_Info.xml
index 45ed5b6..1bb7790 100644
--- a/RHCE_Training/en-US/Book_Info.xml
+++ b/RHCE_Training/en-US/Book_Info.xml
@@ -2,32 +2,35 @@
<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<bookinfo id="book-RHCE_Training-RHCE_Training">
- <title>RHCE Training</title>
- <subtitle>RHCE Training Guide and Exercises</subtitle>
- <!--
+<bookinfo id="RHCE_Training">
+ <title>RHCE Training</title>
+ <subtitle>RHCE Training Guide and Exercises</subtitle>
+ <!--
<productname>Documentation</productname>
<productnumber>0.1</productnumber>
<edition>0</edition>
<pubsnumber>0</pubsnumber>
// -->
- <abstract>
- <para>Insert an abstract here</para></abstract>
- <corpauthor>
- <inlinemediaobject>
- <imageobject>
- <imagedata fileref="Common_Content/images/title_logo.svg" format="SVG" />
- </imageobject>
- <textobject>
- <phrase>Logo</phrase>
- </textobject>
- </inlinemediaobject>
- </corpauthor>
- <copyright>
- <year>&YEAR;</year>
- <holder>&HOLDER;</holder>
- </copyright>
- <xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- </bookinfo>
-
+ <abstract>
+ <para>
+ Insert an abstract here
+ </para>
+ </abstract>
+ <corpauthor>
+ <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="Common_Content/images/title_logo.svg" format="SVG" />
+ </imageobject>
+ <textobject>
+ <phrase>Logo</phrase>
+ </textobject>
+ </inlinemediaobject>
+ </corpauthor>
+ <copyright>
+ <year>&YEAR;</year>
+ <holder>&HOLDER;</holder>
+ </copyright>
+ <xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+</bookinfo>
+
diff --git a/RHCE_Training/en-US/Preface.xml b/RHCE_Training/en-US/Preface.xml
index ad5a192..b7bce0c 100644
--- a/RHCE_Training/en-US/Preface.xml
+++ b/RHCE_Training/en-US/Preface.xml
@@ -3,10 +3,10 @@
]>
<preface id="pref-RHCE_Training-Preface">
- <title>Preface</title>
- <xi:include href="Common_Content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="Common_Content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- </xi:fallback>
- </xi:include>
+ <title>Preface</title>
+ <xi:include href="Common_Content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="Common_Content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ </xi:fallback>
+ </xi:include>
</preface>
diff --git a/RHCE_Training/en-US/RHCE_Training.xml b/RHCE_Training/en-US/RHCE_Training.xml
index 460157f..908b4d0 100644
--- a/RHCE_Training/en-US/RHCE_Training.xml
+++ b/RHCE_Training/en-US/RHCE_Training.xml
@@ -3,199 +3,199 @@
]>
<book>
- <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <chapter id="chap-RHCE_Training-Introduction">
- <title>Introduction</title>
- <para>
- This document intents to let you prepare for your Red Hat Certified Engineer exam.
- </para>
- <section id="sect-RHCE_Training-Introduction-Target_Audience">
- <title>Target Audience</title>
- <para>
- Test of a section
- </para>
- </section>
-
- <section id="sect-RHCE_Training-Introduction-About_this_document">
- <title>About this document</title>
- <para>
- Test of a section
- </para>
- </section>
+ <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <chapter id="chap-RHCE_Training-Introduction">
+ <title>Introduction</title>
+ <para>
+ This document intents to let you prepare for your Red Hat Certified Engineer exam.
+ </para>
+ <section id="sect-RHCE_Training-Introduction-Target_Audience">
+ <title>Target Audience</title>
+ <para>
+ Test of a section
+ </para>
+ </section>
+
+ <section id="sect-RHCE_Training-Introduction-About_this_document">
+ <title>About this document</title>
+ <para>
+ Test of a section
+ </para>
+ </section>
+
+ </chapter>
+ <chapter id="chap-RHCE_Training-About_Exam_302">
+ <title>About Exam 302</title>
+ <para>
+ The exam is based on your knowledge and skills operating a Red Hat Enterprise Linux system. You will have a limited amount of time to perform the tasks described in the exam. How comfortable you are with a Red Hat Enterprise Linux system will influence your score. Also, your ability to perform tasks given a scenario (...)
+ </para>
+ </chapter>
+ <chapter id="chap-RHCE_Training-General">
+ <title>General</title>
+ <para>
+ In general, you should be able to perform the following tasks quickly and efficiently:
+ </para>
+ <para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Search for a package.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Search for a configuration file or multiple configuration files.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Search for documentation.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Install, remove and update a package.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ para
+ </para>
+ </listitem>
+ </orderedlist>
+ </para>
+ </chapter>
+ <part id="part-RHCE_Training-Troubleshooting">
+ <title>Troubleshooting</title>
+ <chapter id="chap-RHCE_Training-Troubleshooting-Introduction">
+ <title>Introduction</title>
+ <para>
+ Something about the troubleshooting section of exam 302.
+ </para>
+ </chapter>
+ </part>
+ <part id="part-RHCE_Training-Installation_and_Configuration">
+ <title>Installation and Configuration</title>
+ <chapter id="chap-RHCE_Training-Installation_and_Configuration-Introduction">
+ <title>Introduction</title>
+ <para>
+ Something about the installation and configuration section of exam 302.
+ </para>
+ </chapter>
+ <chapter id="chap-RHCE_Training-Installation_and_Configuration-Webserver">
+ <title>Webserver</title>
+ <para>
+ The goal of the exercises in <xref linkend="sect-RHCE_Training-Webserver-Exercises" /> is to make you more comfortable with setting up and implementing a webserver. (...)
+ </para>
+ <section id="sect-RHCE_Training-Webserver-Exercises">
+ <title>Exercises</title>
+ <para>
+ These are the exercises associated with the Webserver topic.
+ </para>
+ <para>
+ You will have 90 minutes to complete these exercises.
+ </para>
+ <para>
+ Your grade will be based on each separate item, so make sure you check them off only after you've tested them.
+ </para>
+ <para>
+ Your overal score will be cumulative, and you will not have details on your performance on each seperate task.
+ </para>
+ <para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Create two users, <literal>bob</literal> and <literal>alice</literal> with a password of <literal>&STANDARD_PASSWORD;</literal>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Create four websites:
+ </para>
+ <para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <emphasis>http://localhost/</emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>http://localhost.localdomain/</emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>http://<replaceable>$hostname</replaceable>/</emphasis>, where <replaceable>$hostname</replaceable> is the hostname of your machine.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>http://<replaceable>$fqdn</replaceable>/</emphasis>, where <replaceable>$fqdn</replaceable> is the FQDN of your machine.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The main page of each of the four websites must show the URL visited.
+ </para>
+ <para>
+ Ergo, <emphasis>http://localhost/</emphasis> must show:
+ </para>
+ <para>
- </chapter>
- <chapter id="chap-RHCE_Training-About_Exam_302">
- <title>About Exam 302</title>
- <para>
- The exam is based on your knowledge and skills operating a Red Hat Enterprise Linux system. You will have a limited amount of time to perform the tasks described in the exam. How comfortable you are with a Red Hat Enterprise Linux system will influence your score. Also, your ability to perform tasks given a scenario (...)
- </para>
- </chapter>
- <chapter id="chap-RHCE_Training-General">
- <title>General</title>
- <para>
- In general, you should be able to perform the following tasks quickly and efficiently:
- </para>
- <para>
- <orderedlist>
- <listitem>
- <para>
- Search for a package.
- </para>
- </listitem>
- <listitem>
- <para>
- Search for a configuration file or multiple configuration files.
- </para>
- </listitem>
- <listitem>
- <para>
- Search for documentation.
- </para>
- </listitem>
- <listitem>
- <para>
- Install, remove and update a package.
- </para>
- </listitem>
- <listitem>
- <para>
- para
- </para>
- </listitem>
- </orderedlist>
- </para>
- </chapter>
- <part id="part-RHCE_Training-Troubleshooting">
- <title>Troubleshooting</title>
- <chapter id="chap-RHCE_Training-Troubleshooting-Introduction">
- <title>Introduction</title>
- <para>
- Something about the troubleshooting section of exam 302.
- </para>
- </chapter>
- </part>
- <part id="part-RHCE_Training-Installation_and_Configuration">
- <title>Installation and Configuration</title>
- <chapter id="chap-RHCE_Training-Installation_and_Configuration-Introduction">
- <title>Introduction</title>
- <para>
- Something about the installation and configuration section of exam 302.
- </para>
- </chapter>
- <chapter id="chap-RHCE_Training-Installation_and_Configuration-Webserver">
- <title>Webserver</title>
- <para>
- The goal of the exercises in <xref linkend="sect-RHCE_Training-Webserver-Exercises" /> is to make you more comfortable with setting up and implementing a webserver. (...)
- </para>
- <section id="sect-RHCE_Training-Webserver-Exercises">
- <title>Exercises</title>
- <para>
- These are the exercises associated with the Webserver topic.
- </para>
- <para>
- You will have 90 minutes to complete these exercises.
- </para>
- <para>
- Your grade will be based on each separate item, so make sure you check them off only after you've tested them.
- </para>
- <para>
- Your overal score will be cumulative, and you will not have details on your performance on each seperate task.
- </para>
- <para>
- <orderedlist>
- <listitem>
- <para>
- Create two users, <literal>bob</literal> and <literal>alice</literal> with a password of <literal>&STANDARD_PASSWORD;</literal>.
- </para>
- </listitem>
- <listitem>
- <para>
- Create four websites:
- </para>
- <para>
- <itemizedlist>
- <listitem>
- <para>
- <emphasis>http://localhost/</emphasis>
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis>http://localhost.localdomain/</emphasis>
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis>http://<replaceable>$hostname</replaceable>/</emphasis>, where <replaceable>$hostname</replaceable> is the hostname of your machine.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis>http://<replaceable>$fqdn</replaceable>/</emphasis>, where <replaceable>$fqdn</replaceable> is the FQDN of your machine.
- </para>
- </listitem>
- </itemizedlist>
- </para>
- </listitem>
- <listitem>
- <para>
- The main page of each of the four websites must show the URL visited.
- </para>
- <para>
- Ergo, <emphasis>http://localhost/</emphasis> must show:
- </para>
- <para>
-
<screen>http://localhost/
</screen>
- </para>
- </listitem>
- <listitem>
- <para>
- The <emphasis>http://localhost</emphasis> website must meet the following requirements:
- </para>
- <para>
- <itemizedlist>
- <listitem>
- <para>
- A user web-directory of <emphasis>http://localhost/~<replaceable>username</replaceable>/</emphasis> exists for users <literal>bob</literal> and <literal>alice</literal>.
- </para>
- </listitem>
- <listitem>
- <para>
- In the web directory for each user, a sub-directory <filename>secret/</filename> is accessible only for the owner of that directory. The password used must be <literal>&STANDARD_PASSWORD;</literal>.
- </para>
- </listitem>
- </itemizedlist>
- </para>
- </listitem>
- <listitem>
- <para>
- Install <application>phpMyAdmin</application> so that it is available only through <emphasis>https://<replaceable>$fqdn</replaceable>/mysql/</emphasis>.
- </para>
- <para>
- The CN in the SSL certificate used must match the server name.
- </para>
- <para>
- Each user has his/her own database.
- </para>
- <para>
- The root password must be <literal>&STANDARD_PASSWORD;</literal>.
- </para>
- </listitem>
- <listitem>
- <para>
- Configure an FTP server for users <literal>bob</literal> and <literal>alice</literal> to use, so that they can update the website(s) and upload files to their user web-directories.
- </para>
- </listitem>
- </orderedlist>
- </para>
- </section>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <emphasis>http://localhost</emphasis> website must meet the following requirements:
+ </para>
+ <para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ A user web-directory of <emphasis>http://localhost/~<replaceable>username</replaceable>/</emphasis> exists for users <literal>bob</literal> and <literal>alice</literal>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ In the web directory for each user, a sub-directory <filename>secret/</filename> is accessible only for the owner of that directory. The password used must be <literal>&STANDARD_PASSWORD;</literal>.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Install <application>phpMyAdmin</application> so that it is available only through <emphasis>https://<replaceable>$fqdn</replaceable>/mysql/</emphasis>.
+ </para>
+ <para>
+ The CN in the SSL certificate used must match the server name.
+ </para>
+ <para>
+ Each user has his/her own database.
+ </para>
+ <para>
+ The root password must be <literal>&STANDARD_PASSWORD;</literal>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Configure an FTP server for users <literal>bob</literal> and <literal>alice</literal> to use, so that they can update the website(s) and upload files to their user web-directories.
+ </para>
+ </listitem>
+ </orderedlist>
+ </para>
+ </section>
- </chapter>
- </part>
- <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <index />
+ </chapter>
+ </part>
+ <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+ <index />
</book>
diff --git a/RHCE_Training/en-US/Revision_History.xml b/RHCE_Training/en-US/Revision_History.xml
index c4aacb9..ce0e438 100644
--- a/RHCE_Training/en-US/Revision_History.xml
+++ b/RHCE_Training/en-US/Revision_History.xml
@@ -3,24 +3,24 @@
]>
<appendix id="appe-RHCE_Training-Revision_History">
- <title>Revision History</title>
- <simpara>
- <revhistory>
- <revision>
- <revnumber>1.0</revnumber>
- <date></date>
- <author>
- <firstname></firstname>
- <surname></surname>
- <email></email>
- </author>
- <revdescription>
- <simplelist>
- <member></member>
- </simplelist>
- </revdescription>
- </revision>
- </revhistory>
- </simpara>
+ <title>Revision History</title>
+ <simpara>
+ <revhistory>
+ <revision>
+ <revnumber>1.0</revnumber>
+ <date></date>
+ <author>
+ <firstname></firstname>
+ <surname></surname>
+ <email></email>
+ </author>
+ <revdescription>
+ <simplelist>
+ <member></member>
+ </simplelist>
+ </revdescription>
+ </revision>
+ </revhistory>
+ </simpara>
</appendix>