coreutils-inst.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  2. <sect2>
  3. <title>Installation of Coreutils</title>
  4. <para>Normally the functionality of uname is somewhat broken, in that
  5. the -p switch always returns "unknown". This patch fixes that behaviour
  6. for Intel architectures:</para>
  7. <para><screen><userinput>patch -Np1 -i ../coreutils-&coreutils-uname-patch-version;.patch</userinput></screen></para>
  8. <para>We do not want Coreutils to install it's version of the hostname
  9. binary, because it is inferior to the version provided by Net-tools.
  10. Prevent the installation of hostname with this patch:</para>
  11. <para><screen><userinput>patch -Np1 -i ../coreutils-&coreutils-hostname-patch-version;.patch</userinput></screen></para>
  12. <para>Prepare Coreutils to be compiled:</para>
  13. <para><screen><userinput>./configure --prefix=/usr</userinput></screen></para>
  14. <para>Continue with compiling the package:</para>
  15. <para><screen><userinput>make</userinput></screen></para>
  16. <para><screen><userinput>make check-root</userinput></screen></para>
  17. <para>Install the package:</para>
  18. <para><screen><userinput>make install</userinput></screen></para>
  19. <para>Move files to their proper locations:</para>
  20. <para><screen><userinput>mv /usr/bin/{basename,cat,chgrp,chmod,chown,cp,dd,df} /bin
  21. mv /usr/bin/{dir,dircolors,du,date,echo,false,head} /bin
  22. mv /usr/bin/{install,ln,ls,mkdir,mkfifo,mknod,mv,pwd} /bin
  23. mv /usr/bin/{rm,rmdir,shred,sync,sleep,stty,su,test} /bin
  24. mv /usr/bin/{touch,true,uname,vdir} /bin
  25. mv /usr/bin/chroot /usr/sbin</userinput></screen></para>
  26. <para>Finally, create a few necessary symlinks:</para>
  27. <para><screen><userinput>ln -s test /bin/[
  28. ln -s ../../bin/install /usr/bin</userinput></screen></para>
  29. </sect2>