mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-03-06 06:14:47 +00:00
Changed all "rm file && ln -s dest file" into "ln -sf file".
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@312 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
015eb7c61c
commit
e0d18a70ca
@ -122,6 +122,11 @@ Chapter 6: Merged the different sulogin lines from the inittab file
|
|||||||
into one line.
|
into one line.
|
||||||
</para></listitem>
|
</para></listitem>
|
||||||
|
|
||||||
|
<listitem><para>
|
||||||
|
Chapter 6: Changed all "rm file && ln -s dest file" into
|
||||||
|
"ln -sf file" (in glibc, bzip2 and gzip installation).
|
||||||
|
</para></listitem>
|
||||||
|
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
Chapter 7: Fixed the delays in the killproc function in the functions
|
Chapter 7: Fixed the delays in the killproc function in the functions
|
||||||
script. Now after kill, first check PIDs, then sleep 2 if needed. More
|
script. Now after kill, first check PIDs, then sleep 2 if needed. More
|
||||||
|
@ -16,8 +16,7 @@ Install Bzip2 by running the following commands:
|
|||||||
<userinput>cp -a libbz2.so* libbz2.a /lib &&</userinput>
|
<userinput>cp -a libbz2.so* libbz2.a /lib &&</userinput>
|
||||||
<userinput>rm /usr/lib/libbz2.a &&</userinput>
|
<userinput>rm /usr/lib/libbz2.a &&</userinput>
|
||||||
<userinput>cd /bin &&</userinput>
|
<userinput>cd /bin &&</userinput>
|
||||||
<userinput>rm bunzip2 && ln -s bzip2 bunzip2
|
<userinput>ln -sf bzip2 bunzip2 &&</userinput>
|
||||||
&&</userinput>
|
|
||||||
<userinput>rm bzcat && ln -s bzip2 bzcat
|
<userinput>rm bzcat && ln -s bzip2 bzcat
|
||||||
&&</userinput>
|
&&</userinput>
|
||||||
<userinput>cd /usr/share/man/man1 &&</userinput>
|
<userinput>cd /usr/share/man/man1 &&</userinput>
|
||||||
|
@ -52,8 +52,7 @@ by running:
|
|||||||
<blockquote><literallayout>
|
<blockquote><literallayout>
|
||||||
|
|
||||||
<userinput>cd /etc &&</userinput>
|
<userinput>cd /etc &&</userinput>
|
||||||
<userinput>rm localtime &&</userinput>
|
<userinput>ln -sf ../usr/share/zoneinfo/<tzselect's output>
|
||||||
<userinput>ln -s ../usr/share/zoneinfo/<tzselect's output>
|
|
||||||
localtime</userinput>
|
localtime</userinput>
|
||||||
|
|
||||||
</literallayout></blockquote>
|
</literallayout></blockquote>
|
||||||
|
@ -12,9 +12,9 @@ Install Gzip by running the following commands:
|
|||||||
<userinput>make install &&</userinput>
|
<userinput>make install &&</userinput>
|
||||||
<userinput>cd /usr/bin &&</userinput>
|
<userinput>cd /usr/bin &&</userinput>
|
||||||
<userinput>mv gzip /bin &&</userinput>
|
<userinput>mv gzip /bin &&</userinput>
|
||||||
<userinput>rm gunzip /bin/gunzip &&</userinput>
|
<userinput>rm gunzip &&</userinput>
|
||||||
<userinput>cd /bin &&</userinput>
|
<userinput>cd /bin &&</userinput>
|
||||||
<userinput>ln -s gzip gunzip &&</userinput>
|
<userinput>ln -sf gzip gunzip &&</userinput>
|
||||||
<userinput>ln -s gzip compress &&</userinput>
|
<userinput>ln -s gzip compress &&</userinput>
|
||||||
<userinput>ln -s gunzip uncompress</userinput>
|
<userinput>ln -s gunzip uncompress</userinput>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user