aboutsummaryrefslogtreecommitdiffstats
path: root/chapter09/theend.xml
blob: 3818a7b83a03d03165ac20860c23c806815ce2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  <!ENTITY % general-entities SYSTEM "../general.ent">
  %general-entities;
]>

<sect1 id="ch-finish-theend">
  <?dbhtml filename="theend.html"?>

  <title>The End</title>

  <indexterm zone="ch-finish-theend">
    <primary sortas="e-/etc/lfs-release">/etc/lfs-release</primary>
  </indexterm>

  <indexterm zone="ch-finish-theend">
    <primary sortas="e-/etc/lsb-release">/etc/lsb-release</primary>
  </indexterm>

  <indexterm zone="ch-finish-theend" revision="systemd">
    <primary sortas="e-/etc/os-release">/etc/os-release</primary>
  </indexterm>

  <para>Well done! The new LFS system is installed! We wish you much
  success with your shiny new custom-built Linux system.</para>

  <para revision="systemd">Create an <filename>/etc/os-release</filename> 
        file required by systemd:</para>

<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;"
EOF</userinput></screen>

  <para revision="sysv">It may be a good idea to create an
  <filename>/etc/lfs-release</filename> file. By having this file, it is very
  easy for you (and for us if you need to ask for help at some point) to find
  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>

  <para revision="systemd">Creating the file
  <filename>/etc/lfs-release</filename> is recommended for compatibility with
  the non-systemd branch. By having this file, it is very easy for you (and for
  us if you need to ask for help at some point) to find out which LFS version
  is installed on the system. Create this file by running:</para>

<screen revision="systemd"><userinput>echo &versiond; &gt; /etc/lfs-release</userinput></screen>

  <para>It is also a good idea to create a file to show 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"
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>Be sure to put some sort of customization for the field
  'DISTRIB_CODENAME' to make the system uniquely yours.</para>

</sect1>