123456789101112131415161718192021222324252627282930 |
- <sect2>
- <title>Installation of Sh-utils</title>
- <para>Install Shellutils by running the following commands:</para>
- <para><screen><userinput>./configure --prefix=/usr &&
- make &&
- make install &&
- cd /usr/bin &&
- mv basename date echo false hostname /bin &&
- mv pwd sleep stty su test true uname /bin &&
- mv 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 class="directory">/bin</filename> directory:</para>
- <para><screen><userinput>cd /bin &&
- ln -sf test [</userinput></screen></para>
- </sect2>
|