Changeset b1a51ac1 for chapter09


Ignore:
Timestamp:
12/10/2013 11:37:38 PM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.5-systemd, 7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
112db9d
Parents:
f2a5108
Message:

Import new branch

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10389 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter09/theend.xml

    rf2a5108 rb1a51ac1  
    1818  success with your shiny new custom-built Linux system.</para>
    1919
    20   <para>It is a good idea to create an <filename>/etc/os-release</filename>
    21   file. By having this file, it is very easy for you (and for us if you need to
    22   ask for help at some point) to find out which LFS version is installed on the
    23   system. Create this file by running:</para>
     20  <para>Create an <filename>/etc/os-release</filename> file required by
     21  Systemd:</para>
    2422
    2523<screen><userinput>cat &gt; /etc/os-release &lt;&lt; "EOF"
     
    3028EOF</userinput></screen>
    3129
     30  <para>It is recommended to create <filename>/etc/lfs-release</filename>
     31  for compatibility with non Systemd branch. By having this file, it is very
     32  easy for you (and for us if you need to ask for help at some point) to find
     33  out which LFS version is installed on the system. Create this file by
     34  running:</para>
     35
     36<screen><userinput>echo &version; &gt; /etc/lfs-release</userinput></screen>
     37
     38  <para>It is also a good idea to create a file to show the status of your
     39  new system with respect to the Linux Standards Base (LSB).  To create
     40  this file, run:</para>
     41
     42<screen><userinput>cat &gt; /etc/lsb-release &lt;&lt; "EOF"
     43DISTRIB_ID="Linux From Scratch"
     44DISTRIB_RELEASE="&version;"
     45DISTRIB_CODENAME="&lt;your name here&gt;"
     46DISTRIB_DESCRIPTION="Linux From Scratch"
     47EOF</userinput></screen>
     48
     49  <para>Be sure to put some sort of customization for the field
     50  'DISTRIB_CODENAME' to make the system uniquely yours.</para>
     51
    3252</sect1>
Note: See TracChangeset for help on using the changeset viewer.