NEWS 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. GNU tar NEWS - User visible changes.
  2. Copyright 1994, 1995-1998, 1999 Free Software Foundation, Inc.
  3. version 1.13.12 - Paul Eggert, 1999-09-24.
  4. * `tar' now supports hard links to symbolic links.
  5. * New options --no-same-owner, --no-same-permissions.
  6. * --total now also outputs a human-readable size, and a throughput value.
  7. * `tar' now uses two's-complement base-256 when outputting header
  8. values that are out of the range of the standard unsigned base-8
  9. format. This affects archive members with negative or huge time
  10. stamps or uids, and archive members 8 GB or larger. The new tar
  11. archives cannot be read by traditional tar, or by older versions of
  12. GNU tar. Use the --old-archive option to revert to the old
  13. behavior, which uses unportable representations for negative values,
  14. and which rejects large files.
  15. * On 32-bit hosts, `tar' now assumes that an incoming time stamp T in
  16. the range 2**31 <= T < 2**32 represents the negative time (T -
  17. 2**32). This behavior is nonstandard and is not portable to 64-bit
  18. time_t hosts, so `tar' issues a warning.
  19. * `tar' no longer gives up extracting immediately upon discovering
  20. that an archive contains garbage at the end. It attempts to extract
  21. as many files as possible from the good data before the garbage.
  22. * A read error now causes a nonzero exit status, not just a warning.
  23. * Some diagnostics have been reworded for consistency.
  24. version 1.13.11 - Paul Eggert, 1999-08-23.
  25. * The short name of the --bzip option has been changed to -I,
  26. for compatibility with paxutils.
  27. * -T /dev/null now matches nothing; previously, it matched anything
  28. if no explicit operands were given.
  29. * The `--' option now works the same as with other GNU utilities;
  30. it causes later operands to be interpreted as file names, not options,
  31. even if they begin with `-'.
  32. * For the --newer and --after-date options, the table of time zone
  33. abbreviations like `EST' has been updated to match current practice.
  34. Also, local time abbreviations are now recognized, even if they are
  35. not in tar's hardwired table. Remember, though, that you should use
  36. numeric UTC offsets like `-0500' instead of abbreviations like
  37. `EST', as abbreviations are not standardized and are ambiguous.
  38. version 1.13.10 - Paul Eggert, 1999-08-20.
  39. * `tar' now uses signed base-64 when outputting header values that are
  40. out of the range of the standard unsigned base-8 format. [This
  41. change was superseded in 1.13.12, described above.]
  42. version 1.13.9 - Paul Eggert, 1999-08-18.
  43. * `tar' now writes two zero blocks at end-of-archive instead of just one.
  44. POSIX.1 requires this, and some other `tar' implementations check for it.
  45. * `tar' no longer silently accepts a block containing nonzero checksum bytes
  46. as a zero block.
  47. * `tar' now reads buggy tar files that have a null byte at the start of a
  48. numeric header field.
  49. version 1.13.8 - Paul Eggert, 1999-08-16.
  50. * For compatibility with traditional `tar', intermediate directories
  51. created automatically by root are no longer given the uid and gid of
  52. the original file or directory.
  53. version 1.13.7 - Paul Eggert, 1999-08-14.
  54. * --listed-incremental and --newer are now incompatible options.
  55. * When creating an archive, leading `./' is no longer stripped,
  56. to match traditional tar's behavior (and simplify the documentation).
  57. * --diff without --absolute-names no longer falls back on absolute names.
  58. version 1.13.6 - Paul Eggert, 1999-08-11.
  59. * An --exclude pattern containing / now excludes a file only if it matches an
  60. initial prefix of the file name; a pattern without / continues to
  61. exclude a file if it matches any file name component.
  62. * The protocol for talking to rmt has been extended slightly.
  63. Open flags are now communicated in symbolic format as well as numeric.
  64. The symbolic format (e.g. "O_WRONLY|O_CREAT|O_TRUNC" is for portability
  65. when rmt is operating on a different operating system from tar.
  66. The numeric format is retained, and rmt uses it if symbolic format is absent,
  67. for backward compatibility with older versions of tar and rmt.
  68. * When writing GNU tar format headers, tar now uses signed base-64
  69. for values that cannot be represented in unsigned octal.
  70. This supports larger files (2**66 - 1 bytes instead of 2**33 - 1 bytes),
  71. larger uids, negative time stamps, etc.
  72. * When extracting files with unknown ownership, tar now looks up the
  73. uid and gid "nobody" on hosts whose headers do not define UID_NOBODY
  74. and GID_NOBODY, and falls back on uid/gid -2 if there is no "nobody".
  75. * tar -t --numeric-owner now prints numeric uids and gids, not symbolic.
  76. * New option -y or --bzip2 for bzip2 compression, by popular request.
  77. version 1.13.5 - Paul Eggert, 1999-07-20.
  78. * Do the delayed updates of file metadata even after a fatal error.
  79. version 1.13.4 - Paul Eggert, 1999-07-20.
  80. * Do not chmod unless we are root or the -p option was given;
  81. this matches historical practice.
  82. version 1.13.3 - Paul Eggert, 1999-07-16.
  83. * A path name is excluded if any of its file name components matches an
  84. excluded pattern, even if the path name was specified on the command line.
  85. Also see 1.13.6 for later changes in this area.
  86. version 1.13.2 - Paul Eggert, 1999-07-14.
  87. * Bug reporting address changed to <[email protected]>.
  88. version 1.13.1 - Paul Eggert, 1999-07-12.
  89. * Bug fixes only.
  90. version 1.13 - Paul Eggert, 1999-07-08.
  91. * Support for large files, e.g. files larger than 2 GB on many 32-bit hosts.
  92. Also, support for larger uids, device ids, etc.
  93. * Many bug fixes and porting fixes.
  94. * This release is only for fixes. A more ambitious test release,
  95. with new features, is available as part of the paxutils. Please see:
  96. http://www.iro.umontreal.ca/contrib/paxutils/
  97. The fixes in this release are intended to be merged with paxutils
  98. at some point, but they haven't been merged yet.
  99. * An interim GNU tar alpha had new --bzip2 and --ending-file options,
  100. but they have been removed to maintain compatibility with paxutils.
  101. Please try --use=bzip2 instead of --bzip2.
  102. Version 1.12 - François Pinard, 1997-04.
  103. Sensitive matters
  104. * Use shell globbing patterns for --label, instead of regular expressions.
  105. * Do not quote anymore internally over the quoting done by the shell.
  106. Output for humans
  107. * Offer internationalization capabilities of most recent GNU gettext.
  108. * Messages available in many more languages, thanks to all translators!
  109. * Usage of ISO 8601 dates in listings, instead of local American dates.
  110. * More normalization and cleanup in error messages.
  111. Creation
  112. * For helping using tar with find, offer a --no-recursion option.
  113. * Implement --numeric-owner for ignoring symbolic names at create time.
  114. * New --owner, --group --mode options, still preliminary.
  115. * Recognize creating an archive on /dev/null, so Amanda works faster.
  116. * Object to the creation of an empty archive (like in `tar cf FILE').
  117. * Barely start implementing --posix and POSIXLY_CORRECT.
  118. Extraction
  119. * Make a better job at restoring file and directory attributes.
  120. * Automatically attempt deleting existing files when in the way.
  121. * Option --unlink-first (-U) removes most files prior to extraction.
  122. * Option --recursive-unlink removes non-empty directories when in the way.
  123. * Option --numeric-owner ignores owner/group names, it uses UID/GID instead.
  124. * Use global umask when creating missing intermediate directories.
  125. * When symlinks are not available, extract symbolic links as hard links.
  126. * Diagnose extraction of contiguous files as regular files.
  127. * New --backup, --suffix and --version-control options.
  128. Various changes
  129. * Better support of huge archives with --tape-length and --totals.
  130. * Rename option --read-full-blocks (-B) to --read-full-records (-B).
  131. * Rename option --block-size (-b) to --blocking-factor (-b).
  132. * Rename option --record-number (-R) to --block-number (-R).
  133. * With --block-number (-R), report null blocks and end of file.
  134. * Implement --record-size for introducing a size in bytes.
  135. * Delete --block-compress option and rather decide it automatically.
  136. * Rename option --modification-time to --touch.
  137. Many bugs are squashed, while others still run free.
  138. Version 1.11.8 - François Pinard, 1995-06.
  139. * Messages available in French, German, Portuguese and Swedish.
  140. * The distribution provides a rudimentary Texinfo manual.
  141. * The device defaults to stdin/stdout, unless overridden by the installer.
  142. * Option --sparse (-S) should work on more systems.
  143. * Option --rsh-command may select an alternative remote shell program.
  144. Most changes are internal, and should yield better portability.
  145. Version 1.11.2 - Michael Bushnell, 1993-03.
  146. * Changes in backup scripts: cleaned up considerably; notices error
  147. conditions better over rsh; DUMP_REMIND_SCRIPT is now an option in
  148. backup-specs; new file dump-remind is an example of a
  149. DUMP_REMIND_SCRIPT.
  150. * Superfluous "Reading dirname" was a bug; fixed.
  151. * Incompatibility problems with a bug on Solaris are fixed.
  152. * New option --gzip (aliases are --ungzip and -z); calls gzip instead
  153. of compress. Also, --use-compress-program lets you specify any
  154. compress program. --compress-block is renamed --block-compress and
  155. now requires one of the three compression options to be specified.
  156. * Several error messages are cleaned up.
  157. * Directory owners are now set properly when running as root.
  158. * Provide DUMP_REMIND_SCRIPT in backup-specs as a possible option
  159. for --info-script.
  160. * Behave better with broken rmt servers.
  161. * Dump scripts no longer use --atime-preserve; this causes a nasty probem.
  162. * Several Makefile cleanups.
  163. Version 1.11.1 - Michael Bushnell, 1992-09.
  164. * Many bug fixes.
  165. Version 1.11 - Michael Bushnell, 1992-09.
  166. Version 1.10.16 - 1992-07.
  167. Version 1.10.15 - 1992-06.
  168. Version 1.10.14 - 1992-05.
  169. Version 1.10.13 - 1992-01.
  170. * Many bug fixes.
  171. * Now uses GNU standard configure, generated by Autoconf.
  172. * Long options now use `--'; use of `+' is deprecated and support
  173. for it will eventually be removed.
  174. * New option --null causes filenames read by -T to be
  175. null-terminated, and causes -C to be ignored.
  176. * New option --remove-files deletes files (but not directories)
  177. after they are added to the archive.
  178. * New option --ignore-failed-read prevents read-errors from affecting
  179. the exit status.
  180. * New option --checkpoint prints occasional messages as the tape
  181. is being read or written.
  182. * New option --show-omitted-dirs prints the names of directories
  183. omitted from the archive.
  184. * Some tape drives which use a non-standard method of indicating
  185. end-of-tape now work correctly with multi-tape archives.
  186. * --volno-file: Read the volume number used in prompting the user
  187. (but not in recording volume ID's on the archive) from a file.
  188. * When using --multi-volume, you can now give multiple -f arguments;
  189. the various tape drives will get used in sequence and then wrap
  190. around to the beginning.
  191. * Remote archive names no longer have to be in /dev: any file with a
  192. `:' is interpreted as remote. If new option --force-local is given,
  193. then even archive files with a `:' are considered local.
  194. * New option --atime-preserve restores (if possible) atimes to
  195. their original values after dumping the file.
  196. * No longer does tar confusingly dump "." when you don't tell it
  197. what to dump.
  198. * When extracting directories, tar now correctly restores their
  199. modification and access times.
  200. * Longnames support is redone differently--long name info directly
  201. precedes the long-named file or link in the archive, so you no
  202. longer have to wait for the extract to hit the end of the tape for
  203. long names to work.
  204. Version 1.10 - Michael Bushnell, 1991-07.
  205. * Filename to -G is optional. -C works right. Names +newer and
  206. +newer-mtime work right.
  207. * -g is now +incremental, -G is now +listed-incremental.
  208. * Sparse files now work correctly.
  209. * +volume is now called +label.
  210. * +exclude now takes a filename argument, and +exclude-from does
  211. what +exclude used to do.
  212. * Exit status is now correct.
  213. * +totals keeps track of total I/O and prints it when tar exits.
  214. * When using +label with +extract, the label is now a regexp.
  215. * New option +tape-length (-L) does multi-volume handling like BSD
  216. dump: you tell tar how big the tape is and it will prompt at that
  217. point instead of waiting for a write error.
  218. * New backup scripts level-0 and level-1 which might be useful
  219. to people. They use a file "backup-specs" for information, and
  220. shouldn't need local modification. These are what we use to do
  221. all our backups at the FSF.
  222. Version 1.09 - Jay Fenlason, 1990-10.
  223. Version 1.08 - Jay Fenlason, 1990-01.
  224. Versions 1.07 back to 1.00 by Jay Fenlason.
  225. * See ChangeLog for more details.