Some cosmetic tweaks

* Reorder commants to match descriptive text (/root, /tmp)
* Sort commands alphabetically
Changes based on notes from Kevin B. @lfs-dev

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@12006 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Thomas Trepl 2020-08-02 05:13:12 +00:00
parent a0de64cd75
commit 17ca5488d2

View File

@ -10,22 +10,31 @@
<title>Creating Directories</title> <title>Creating Directories</title>
<para>It is time to create the full structure in the LFS file system. Create <para>It is time to create the full structure in the LFS file system.</para>
a standard directory tree by issuing the following commands:</para>
<screen><userinput>mkdir -pv /{bin,boot,etc/{opt,sysconfig},home,lib/firmware,mnt,opt} <para>Create some root-level directories that are not in the limited set
mkdir -pv /{media/{floppy,cdrom},srv,var} required in the previous chapters by issuing the following command:</para>
<screen><userinput>mkdir -pv /{boot,home,mnt,opt,srv}</userinput></screen>
<para>Create the required set of subdirectories below the root-level by
issuing the following commands:</para>
<screen><userinput>mkdir -pv /etc/{opt,sysconfig}
mkdir -pv /lib/firmware
mkdir -pv /media/{floppy,cdrom}
mkdir -pv /usr/{,local/}{bin,include,lib,sbin,src} mkdir -pv /usr/{,local/}{bin,include,lib,sbin,src}
mkdir -pv /usr/{,local/}share/{color,dict,doc,info,locale,man} mkdir -pv /usr/{,local/}share/{color,dict,doc,info,locale,man}
mkdir -pv /usr/{,local/}share/{misc,terminfo,zoneinfo} mkdir -pv /usr/{,local/}share/{misc,terminfo,zoneinfo}
mkdir -pv /usr/{,local/}share/man/man{1..8} mkdir -pv /usr/{,local/}share/man/man{1..8}
install -dv -m 0750 /root mkdir -pv /var/{cache,local,log,mail,opt,spool}
install -dv -m 1777 /tmp /var/tmp mkdir -pv /var/lib/{color,misc,locate}
mkdir -v /var/{log,mail,spool}
ln -sv /run /var/run ln -sv /run /var/run
ln -sv /run/lock /var/lock ln -sv /run/lock /var/lock
mkdir -pv /var/{opt,cache,lib/{color,misc,locate},local}</userinput></screen>
install -dv -m 0750 /root
install -dv -m 1777 /tmp /var/tmp</userinput></screen>
<para>Directories are, by default, created with permission mode 755, but <para>Directories are, by default, created with permission mode 755, but
this is not desirable for all directories. In the commands above, two this is not desirable for all directories. In the commands above, two