lfs/chapter06/shellutils-inst.xml

41 lines
1.0 KiB
XML
Raw Normal View History

<sect2>
<title>Installation of Sh-utils</title>
<para>
Install Shellutils by running the following commands:
</para>
<para>
<screen>
<userinput>./configure --prefix=/usr &amp;&amp;</userinput>
<userinput>make &amp;&amp;</userinput>
<userinput>make install &amp;&amp;</userinput>
<userinput>cd /usr/bin &amp;&amp;</userinput>
<userinput>mv date echo false pwd stty /bin &amp;&amp;</userinput>
<userinput>mv su true uname hostname /bin</userinput>
</screen>
</para>
</sect2>
<sect2>
<title>FHS compliance notes</title>
<para>
There is a command installed in this package which is named test. It is often
used in shell scripts to evaluate conditions, but is more often encountered
in the form of <command>[ condition ]</command>. These brackets are built into
the bash interpreter, but the FHS dictates that there should be a
<filename>[</filename> binary. We create that in this way, while still in the
<filename>/usr/bin</filename> directory:
</para>
<para>
<screen>
<userinput>ln -s test [</userinput>
</screen>
</para>
</sect2>