blob: d47c7ed232862431b844e46a963c877eb6b8b6c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<sect2>
<title>Installation of Sh-utils</title>
<para>Install Shellutils by running the following commands:</para>
<para><screen><userinput>./configure --prefix=/usr &&</userinput>
<userinput>make &&</userinput>
<userinput>make install &&</userinput>
<userinput>cd /usr/bin &&</userinput>
<userinput>mv -f date echo false pwd stty /bin &&</userinput>
<userinput>mv -f su true uname hostname /bin &&</userinput>
<userinput>mv -f chroot ../sbin</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 -sf test [</userinput></screen></para>
</sect2>
|