README 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. These are the GNU core utilities. This package is the union of
  2. the GNU fileutils, sh-utils, and textutils packages.
  3. Most of these programs have significant advantages over their Unix
  4. counterparts, such as greater speed, additional options, and fewer
  5. arbitrary limits.
  6. The programs that can be built with this package are:
  7. [ arch b2sum base32 base64 basename cat chcon chgrp chmod chown chroot cksum
  8. comm coreutils cp csplit cut date dd df dir dircolors dirname du echo env
  9. expand expr factor false fmt fold groups head hostid hostname id install
  10. join kill link ln logname ls md5sum mkdir mkfifo mknod mktemp mv nice nl
  11. nohup nproc numfmt od paste pathchk pinky pr printenv printf ptx pwd
  12. readlink realpath rm rmdir runcon seq sha1sum sha224sum sha256sum sha384sum
  13. sha512sum shred shuf sleep sort split stat stdbuf stty sum sync tac tail
  14. tee test timeout touch tr true truncate tsort tty uname unexpand uniq
  15. unlink uptime users vdir wc who whoami yes
  16. See the file NEWS for a list of major changes in the current release.
  17. If you obtained this file as part of a "git clone", then see the
  18. README-hacking file. If this file came to you as part of a tar archive,
  19. then see the file INSTALL for compilation and installation instructions.
  20. Like the rest of the GNU system, these programs mostly conform to
  21. POSIX, with BSD and other extensions. For closer conformance, or
  22. conformance to a particular POSIX version, set the POSIXLY_CORRECT
  23. and the _POSIX2_VERSION environment variables, as described in
  24. the documentation under "Standards conformance".
  25. The ls, dir, and vdir commands are all separate executables instead of
  26. one program that checks argv[0] because people often rename these
  27. programs to things like gls, gnuls, l, etc. Renaming a program
  28. file shouldn't affect how it operates, so that people can get the
  29. behavior they want with whatever name they want.
  30. Special thanks to Paul Eggert, Brian Matthews, Bruce Evans, Karl Berry,
  31. Kaveh Ghazi, and François Pinard for help with debugging and porting
  32. these programs. Many thanks to all of the people who have taken the
  33. time to submit problem reports and fixes. All contributed changes are
  34. attributed in the commit logs.
  35. And thanks to the following people who have provided accounts for
  36. portability testing on many different types of systems: Bob Proulx,
  37. Christian Robert, François Pinard, Greg McGary, Harlan Stenn,
  38. Joel N. Weber, Mark D. Roth, Matt Schalit, Nelson H. F. Beebe,
  39. Réjean Payette, Sam Tardieu.
  40. Thanks to Michael Stone for inflicting test releases of this package
  41. on Debian's unstable distribution, and to all the kind folks who used
  42. that distribution and found and reported bugs.
  43. Note that each man page is now automatically generated from a template
  44. and from the corresponding --help usage message. Patches to the template
  45. files (man/*.x) are welcome. However, the authoritative documentation
  46. is in texinfo form in the doc directory.
  47. *********************
  48. Pre-C99 build failure
  49. ---------------------
  50. In 2009 we added this requirement:
  51. To build the coreutils from source, you must have a C99-conforming
  52. compiler, due to the use of declarations after non-declaration statements
  53. in several files in src/. There is code in configure to find and, if
  54. possible, enable an appropriate compiler. However, if configure doesn't
  55. find a C99 compiler, it continues nonetheless, and your build will fail.
  56. There used to be a "c99-to-c89.diff" patch you could apply to convert
  57. to code that even an old pre-c99 compiler can handle, but it was too
  58. tedious to maintain, so has been removed.
  59. ***********************
  60. HPUX 11.x build failure
  61. -----------------------
  62. A known problem exists when compiling on HPUX on both hppa and ia64
  63. in 64-bit mode (i.e., +DD64) on HP-UX 11.0, 11.11, and 11.23. This
  64. is not due to a bug in the package but instead due to a bug in the
  65. system header file which breaks things in 64-bit mode. The default
  66. compilation mode is 32-bit and the software compiles fine using the
  67. default mode. To build this software in 64-bit mode you will need
  68. to fix the system /usr/include/inttypes.h header file. After
  69. correcting that file the software also compiles fine in 64-bit mode.
  70. Here is one possible patch to correct the problem:
  71. --- /usr/include/inttypes.h.orig Thu May 30 01:00:00 1996
  72. +++ /usr/include/inttypes.h Sun Mar 23 00:20:36 2003
  73. @@ -489 +489 @@
  74. -#ifndef __STDC_32_MODE__
  75. +#ifndef __LP64__
  76. ************************
  77. OSF/1 4.0d and AIX build failures
  78. ------------------------
  79. If you use /usr/bin/make on these systems, the build will fail due
  80. to the presence of the "[" target. OSF/1 make(1) appears to
  81. treat "[" as some syntax relating to locks, while AIX make(1)
  82. appears to skip the "[" target. To work around these issues
  83. the best solution is to use GNU make. Otherwise, simply remove
  84. all mention of "[$(EXEEXT)" from src/Makefile.
  85. ************************
  86. 32 bit time_t build failures
  87. ------------------------
  88. On systems where it's determined that 64 bit time_t is supported
  89. (indicated by touch -t <some time after 2038>), but that coreutils
  90. would be built with a narrower time_t, the build will fail.
  91. This can be allowed by passing TIME_T_32_BIT_OK=yes to configure,
  92. or avoided by enabling 64 bit builds. For example GCC on AIX defaults
  93. to 32 bit, and to enable the 64 bit ABI one can use:
  94. ./configure CFLAGS=-maix64 LDFLAGs=-maix64 AR='ar -X64'
  95. *************************************************
  96. "make check" failure on IRIX 6.5 and Solaris <= 9
  97. -------------------------------------------------
  98. Using the vendor make program to run "make check" fails on these two systems.
  99. If you want to run all of the tests there, use GNU make.
  100. **********************
  101. Running tests as root:
  102. ----------------------
  103. If you run the tests as root, note that a few of them create files
  104. and/or run programs as a non-root user, 'nobody' by default.
  105. If you want to use some other non-root username, specify it via
  106. the NON_ROOT_USERNAME environment variable. Depending on the
  107. permissions with which the working directories have been created,
  108. using 'nobody' may fail, because that user won't have the required
  109. read and write access to the build and test directories.
  110. I find that it is best to unpack and build as a non-privileged
  111. user, and then to run the following command as that user in order
  112. to run the privilege-requiring tests:
  113. sudo env PATH="$PATH" NON_ROOT_USERNAME=$USER make -k check-root
  114. If you can run the tests as root, please do so and report any
  115. problems. We get much less test coverage in that mode, and it's
  116. arguably more important that these tools work well when run by
  117. root than when run by less privileged users.
  118. ***************
  119. Reporting bugs:
  120. ---------------
  121. Send bug reports, questions, comments, etc. to bug-coreutils@gnu.org.
  122. To suggest a patch, see the files README-hacking and HACKING for tips.
  123. If you have a problem with 'sort', try running 'sort --debug', as it
  124. can can often help find and fix problems without having to wait for an
  125. answer to a bug report. If the debug output does not suffice to fix
  126. the problem on your own, please compress and attach it to the rest of
  127. your bug report.
  128. IMPORTANT: if you take the time to report a test failure,
  129. please be sure to include the output of running 'make check'
  130. in verbose mode for each failing test. For example,
  131. if the test that fails is tests/df/df-P.sh, then you would
  132. run this command:
  133. make check TESTS=tests/df/df-P.sh VERBOSE=yes SUBDIRS=. >> log 2>&1
  134. For some tests, you can get even more detail by adding DEBUG=yes.
  135. Then include the contents of the file 'log' in your bug report.
  136. ***************************************
  137. There are many tests, but nowhere near as many as we need.
  138. Additions and corrections are very welcome.
  139. If you see a problem that you've already reported, feel free to re-report
  140. it -- it won't bother me to get a reminder. Besides, the more messages I
  141. get regarding a particular problem the sooner it'll be fixed -- usually.
  142. If you sent a complete patch and, after a couple weeks you haven't
  143. received any acknowledgement, please ping us. A complete patch includes
  144. a well-written ChangeLog entry, unified (diff -u format) diffs relative
  145. to the most recent test release (or, better, relative to the latest
  146. sources in the public repository), an explanation for why the patch is
  147. necessary or useful, and if at all possible, enough information to
  148. reproduce whatever problem prompted it. Plus, you'll earn lots of
  149. karma if you include a test case to exercise any bug(s) you fix.
  150. Here are instructions for checking out the latest development sources:
  151. https://savannah.gnu.org/git/?group=coreutils
  152. If your patch adds a new feature, please try to get some sort of consensus
  153. that it is a worthwhile change. One way to do that is to send mail to
  154. coreutils@gnu.org including as much description and justification
  155. as you can. Based on the feedback that generates, you may be able to
  156. convince us that it's worth adding. Please also consult the list of
  157. previously discussed but ultimately rejected feature requests at:
  158. https://www.gnu.org/software/coreutils/rejected_requests.html
  159. WARNING: Now that we use the ./bootstrap script, you should not run
  160. autoreconf manually. Doing that will overwrite essential source files
  161. with older versions, which may make the package unbuildable or introduce
  162. subtle bugs.
  163. WARNING: If you modify files like configure.in, m4/*.m4, aclocal.m4,
  164. or any Makefile.am, then don't be surprised if what gets regenerated no
  165. longer works. To make things work, you'll have to be using appropriate
  166. versions of the tools listed in bootstrap.conf's buildreq string.
  167. All of these programs except 'test' recognize the '--version' option.
  168. When reporting bugs, please include in the subject line both the package
  169. name/version and the name of the program for which you found a problem.
  170. For general documentation on the coding and usage standards
  171. this distribution follows, see the GNU Coding Standards at:
  172. https://www.gnu.org/prep/standards/
  173. For any copyright year range specified as YYYY-ZZZZ in this package
  174. note that the range specifies every single year in that closed interval.
  175. Mail suggestions and bug reports for these programs to
  176. the address on the last line of --help output.
  177. ========================================================================
  178. Copyright (C) 1998-2018 Free Software Foundation, Inc.
  179. Permission is granted to copy, distribute and/or modify this document
  180. under the terms of the GNU Free Documentation License, Version 1.3 or
  181. any later version published by the Free Software Foundation; with no
  182. Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
  183. Texts. A copy of the license is included in the "GNU Free
  184. Documentation License" file as part of this distribution.