Ignore:
Timestamp:
06/29/2020 07:55:01 AM (4 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib-10.1
Children:
c4804e8
Parents:
d4fdde6
Message:

Update to new lfs structure

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

File:
1 moved

Legend:

Unmodified
Added
Removed
  • chapter07/creatingdirs.xml

    rd4fdde6 r37e35d2  
    66]>
    77
    8 <sect1 id="ch-system-creatingdirs">
     8<sect1 id="ch-tools-creatingdirs">
    99  <?dbhtml filename="creatingdirs.html"?>
    1010
    1111  <title>Creating Directories</title>
    1212
    13   <para>It is time to create some structure in the LFS file system. Create a
    14   standard directory tree by issuing the following commands:</para>
     13  <para>It is time to create the full structure in the LFS file system. Create
     14  a standard directory tree by issuing the following commands:</para>
    1515
    1616<screen><userinput>mkdir -pv /{bin,boot,etc/{opt,sysconfig},home,lib/firmware,mnt,opt}
    17 mkdir -pv /{media/{floppy,cdrom},sbin,srv,var}
    18 install -dv -m 0750 /root
    19 install -dv -m 1777 /tmp /var/tmp
     17mkdir -pv /{media/{floppy,cdrom},srv,var}
    2018mkdir -pv /usr/{,local/}{bin,include,lib,sbin,src}
    2119mkdir -pv /usr/{,local/}share/{color,dict,doc,info,locale,man}
    22 mkdir -v  /usr/{,local/}share/{misc,terminfo,zoneinfo}
    23 mkdir -v  /usr/libexec
     20mkdir -pv /usr/{,local/}share/{misc,terminfo,zoneinfo}
    2421mkdir -pv /usr/{,local/}share/man/man{1..8}
    25 mkdir -v  /usr/lib/pkgconfig
    26 
    27 case $(uname -m) in
    28  x86_64) mkdir -v /lib64 ;;
    29 esac
     22install -dv -m 1777 /tmp /var/tmp
     23install -dv -m 0750 /root
    3024
    3125mkdir -v /var/{log,mail,spool}
     
    3327ln -sv /run/lock /var/lock
    3428mkdir -pv /var/{opt,cache,lib/{color,misc,locate},local}</userinput></screen>
    35 <screen arch="ml_32,mlx32,ml_all"><userinput arch="ml_32,ml_all">mkdir -pv /usr/lib32
    36 install -vdm755 /usr/lib32/pkgconfig</userinput>
    37 <userinput arch="ml_x32,ml_all">mkdir -pv /usr/libx32
    38 install -vdm755 /usr/libx32/pkgconfig</userinput></screen>
     29
     30  <para arch="ml_32,ml_x32,ml_all">Required directories for multilib
     31  support has already been created while previous installation steps.</para>
    3932
    4033  <para>Directories are, by default, created with permission mode 755, but
Note: See TracChangeset for help on using the changeset viewer.