aboutsummaryrefslogtreecommitdiffstats
path: root/chapter11
diff options
context:
space:
mode:
Diffstat (limited to 'chapter11')
-rw-r--r--chapter11/reboot.xml37
-rw-r--r--chapter11/theend.xml27
-rw-r--r--chapter11/whatnow.xml3
3 files changed, 19 insertions, 48 deletions
diff --git a/chapter11/reboot.xml b/chapter11/reboot.xml
index e2f0e0c59..adf1a9f3e 100644
--- a/chapter11/reboot.xml
+++ b/chapter11/reboot.xml
@@ -20,22 +20,19 @@
<itemizedlist>
- <listitem><para>A text mode browser such as <ulink revision="sysv"
- url='&blfs-book;basicnet/lynx.html'>Lynx</ulink><ulink revision="systemd"
- url='&blfs-systemd-book;basicnet/lynx.html'>Lynx</ulink>
+ <listitem><para>A text mode browser such as <ulink
+ url='&blfs-book;basicnet/lynx.html'>Lynx</ulink>
will allow you to easily view the BLFS book in one virtual terminal, while
building packages in another.</para></listitem>
- <listitem><para>The <ulink revision="sysv"
- url='&blfs-book;postlfs/make-ca.html'>make-ca</ulink><ulink revision="systemd"
- url='&blfs-systemd-book;postlfs/make-ca.html'>make-ca</ulink> package
+ <listitem><para>The <ulink
+ url='&blfs-book;postlfs/make-ca.html'>make-ca</ulink> package
will allow you to set up local trusted anchor certificates, allowing
the system to verify SSL certificates provided by remote servers (for
example, a website using HTTPS).</para></listitem>
- <listitem><para>The <ulink revision="sysv"
- url='&blfs-book;general/gpm.html'>GPM</ulink><ulink revision="systemd"
- url='&blfs-systemd-book;general/gpm.html'>GPM</ulink> package will allow
+ <listitem><para>The <ulink
+ url='&blfs-book;general/gpm.html'>GPM</ulink> package will allow
you to perform copy/paste actions in your virtual
terminals.</para></listitem>
@@ -47,29 +44,21 @@
url='&blfs-book;basicnet/dhcp.html'>dhcp</ulink> may be
useful.</para></listitem>
- <listitem><para>Installing <ulink revision="sysv"
- url='&blfs-book;postlfs/sudo.html'>sudo</ulink><ulink revision="systemd"
- url='&blfs-systemd-book;postlfs/sudo.html'>sudo</ulink> may be useful for
+ <listitem><para>Installing <ulink
+ url='&blfs-book;postlfs/sudo.html'>sudo</ulink> may be useful for
building packages as a non-root user and easily installing the resulting
packages in your new system.</para></listitem>
<listitem><para>If you want to access your new system from a remote system
- within a comfortable GUI environment, install <ulink revision="sysv"
- url='&blfs-book;postlfs/openssh.html'>openssh</ulink><ulink revision="systemd"
- url='&blfs-systemd-book;postlfs/openssh.html'>openssh</ulink>.
- </para></listitem>
+ within a comfortable GUI environment, install <ulink
+ url='&blfs-book;postlfs/openssh.html'>openssh</ulink>.</para></listitem>
<listitem><para>To make fetching files over the internet easier, install
- <ulink
- revision="sysv" url='&blfs-book;basicnet/wget.html'>wget</ulink><ulink
- revision="systemd" url='&blfs-systemd-book;basicnet/wget.html'>wget</ulink>.
- </para></listitem>
+ <ulink url='&blfs-book;basicnet/wget.html'>wget</ulink>.</para></listitem>
<listitem><para>To connect to a wireless access point for networking,
- install <ulink revision="sysv"
- url='&blfs-book;basicnet/wpa_supplicant.html'>wpa_supplicant</ulink><ulink
- revision="systemd"
- url='&blfs-systemd-book;basicnet/wpa_supplicant.html'>wpa_supplicant</ulink>.
+ install <ulink
+ url='&blfs-book;basicnet/wpa_supplicant.html'>wpa_supplicant</ulink>.
</para></listitem>
<listitem><para>Finally, a review of the following configuration files
diff --git a/chapter11/theend.xml b/chapter11/theend.xml
index 6a5f8ad7a..8470948a3 100644
--- a/chapter11/theend.xml
+++ b/chapter11/theend.xml
@@ -31,37 +31,28 @@
out which LFS version is installed on the system. Create this file by
running:</para>
-<screen revision="sysv"><userinput>echo &version; &gt; /etc/lfs-release</userinput></screen>
+<screen><userinput>echo &version; &gt; /etc/lfs-release</userinput></screen>
-<screen revision="systemd"><userinput>echo &versiond; &gt; /etc/lfs-release</userinput></screen>
-
- <para>Two files describing the installed system may be used by packages
- that can be installed on the system later, either in binary form or by building
+ <para>Two files describing the installed system may be used by packages that
+ can be installed on the system later, either in binary form or by building
them.</para>
<para>The first one shows the status of your
new system with respect to the Linux Standards Base (LSB). To create
this file, run:</para>
-<screen revision="sysv"><userinput>cat &gt; /etc/lsb-release &lt;&lt; "EOF"
+<screen><userinput>cat &gt; /etc/lsb-release &lt;&lt; "EOF"
DISTRIB_ID="Linux From Scratch"
DISTRIB_RELEASE="&version;"
DISTRIB_CODENAME="&lt;your name here&gt;"
DISTRIB_DESCRIPTION="Linux From Scratch"
EOF</userinput></screen>
-<screen revision="systemd"><userinput>cat &gt; /etc/lsb-release &lt;&lt; "EOF"
-DISTRIB_ID="Linux From Scratch"
-DISTRIB_RELEASE="&versiond;"
-DISTRIB_CODENAME="&lt;your name here&gt;"
-DISTRIB_DESCRIPTION="Linux From Scratch"
-EOF</userinput></screen>
-
<para>The second one contains roughly the same information, and is used
by systemd and some graphical desktop environments. To create
this file, run:</para>
-<screen revision="sysv"><userinput>cat &gt; /etc/os-release &lt;&lt; "EOF"
+<screen><userinput>cat &gt; /etc/os-release &lt;&lt; "EOF"
NAME="Linux From Scratch"
VERSION="&version;"
ID=lfs
@@ -69,14 +60,6 @@ PRETTY_NAME="Linux From Scratch &version;"
VERSION_CODENAME="&lt;your name here&gt;"
EOF</userinput></screen>
-<screen revision="systemd"><userinput>cat &gt; /etc/os-release &lt;&lt; "EOF"
-NAME="Linux From Scratch"
-VERSION="&versiond;"
-ID=lfs
-PRETTY_NAME="Linux From Scratch &versiond;"
-VERSION_CODENAME="&lt;your name here&gt;"
-EOF</userinput></screen>
-
<para>Be sure to put some sort of customization for the fields
'DISTRIB_CODENAME' and 'VERSION_CODENAME' to make the system uniquely
yours.</para>
diff --git a/chapter11/whatnow.xml b/chapter11/whatnow.xml
index e72f4ca5e..f8672ec69 100644
--- a/chapter11/whatnow.xml
+++ b/chapter11/whatnow.xml
@@ -57,8 +57,7 @@
<para>The Beyond Linux From Scratch book covers installation
procedures for a wide range of software beyond the scope of the LFS
- Book. The BLFS project is located at <ulink revision="sysv"
- url="&blfs-book;"/><ulink revision="systemd" url="&blfs-systemd-book;"/>.
+ Book. The BLFS project is located at <ulink url="&blfs-book;"/>.
</para>
</listitem>