source: chapter07/creatingdirs.xml@ c093e6b

multilib
Last change on this file since c093e6b was c093e6b, checked in by Thomas Trepl (Moody) <thomas@…>, 20 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[8ef8304]7
[6dfcfecc]8<sect1 id="ch-tools-creatingdirs">
[8ef8304]9 <?dbhtml filename="creatingdirs.html"?>
10
11 <title>Creating Directories</title>
12
[36cb08f]13 <para>It is time to create the full directory structure in the LFS file system.</para>
[673b0d8]14
[36cb08f]15 <note><para>Some of the directories mentioned in this section may have
16 already been created earlier with explicit instructions, or when installing some
[9b73f94]17 packages. They are repeated below for completeness.</para></note>
18
[032dc4e8]19 <para>Create some root-level directories that are not in the limited set
20 required in the previous chapters by issuing the following command:</para>
21
22<screen><userinput>mkdir -pv /{boot,home,mnt,opt,srv}</userinput></screen>
23
24 <para>Create the required set of subdirectories below the root-level by
25 issuing the following commands:</para>
26
27<screen><userinput>mkdir -pv /etc/{opt,sysconfig}
28mkdir -pv /lib/firmware
29mkdir -pv /media/{floppy,cdrom}
[d7a9421]30mkdir -pv /usr/{,local/}{include,src}
31mkdir -pv /usr/local/{bin,lib,sbin}
[d02c56d]32mkdir -pv /usr/{,local/}share/{color,dict,doc,info,locale,man}
[6dfcfecc]33mkdir -pv /usr/{,local/}share/{misc,terminfo,zoneinfo}
[83b720b]34mkdir -pv /usr/{,local/}share/man/man{1..8}
[032dc4e8]35mkdir -pv /var/{cache,local,log,mail,opt,spool}
36mkdir -pv /var/lib/{color,misc,locate}
37
38ln -sfv /run /var/run
39ln -sfv /run/lock /var/lock
[3dc9543]40
[032dc4e8]41install -dv -m 0750 /root
42install -dv -m 1777 /tmp /var/tmp</userinput></screen>
[6dfcfecc]43
44 <para arch="ml_32,ml_x32,ml_all">Required directories for multilib
45 support has already been created while previous installation steps.</para>
[673b0d8]46
[8ef8304]47 <para>Directories are, by default, created with permission mode 755, but
[36cb08f]48 this is not desirable everywhere. In the commands above, two
[8ef8304]49 changes are made&mdash;one to the home directory of user <systemitem
50 class="username">root</systemitem>, and another to the directories for
51 temporary files.</para>
[81fd230]52
[8ef8304]53 <para>The first mode change ensures that not just anybody can enter
[36cb08f]54 the <filename class="directory">/root</filename> directory&mdash;just
55 like a normal user would do with his or her own home directory. The
[8ef8304]56 second mode change makes sure that any user can write to the
57 <filename class="directory">/tmp</filename> and <filename
58 class="directory">/var/tmp</filename> directories, but cannot remove
59 another user's files from them. The latter is prohibited by the so-called
60 <quote>sticky bit,</quote> the highest bit (1) in the 1777 bit mask.</para>
[81fd230]61
[8ef8304]62 <sect2>
63 <title>FHS Compliance Note</title>
[81fd230]64
[36cb08f]65 <para>This directory tree is based on the Filesystem Hierarchy Standard
[6bf3f58]66 (FHS) (available at <ulink
[1daca67]67 url="https://refspecs.linuxfoundation.org/fhs.shtml"/>). The FHS also specifies
[36cb08f]68 the optional existence of additional directories such as <filename
[83b720b]69 class="directory">/usr/local/games</filename> and <filename
[36cb08f]70 class="directory">/usr/share/games</filename>. In LFS, we create only the
71 directories that are really necessary. However, feel free to create more
72 directories, if you wish. </para>
[81fd230]73
[8ef8304]74 </sect2>
[81fd230]75
[673b0d8]76</sect1>
Note: See TracBrowser for help on using the repository browser.