NEWS 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874
  1. GNU tar NEWS - User visible changes.
  2. Please send GNU tar bug reports to <[email protected]>
  3. * Support for reading ustar type 'N' header logical records has been removed.
  4. This GNU extension was generated only by very old versions of GNU 'tar'.
  5. Unfortunately its implementation had security holes; see
  6. <http://archives.neohapsis.com/archives/fulldisclosure/2006-11/0344.html>.
  7. We don't expect that any tar archives in practical use have type 'N'
  8. records, but if you have one and you trust its contents, you can
  9. decode it with GNU tar 1.16 or earlier.
  10. version 1.16 - Sergey Poznyakoff, 2006-10-21
  11. * After creating an archive, tar exits with code 1 if some files were
  12. changed while being read. Previous versions exited with code 2 (fatal
  13. error), and only if some files were truncated while being archived.
  14. * New option --mtime allows to set modification times for all archive
  15. members during creation.
  16. * Bug fixes
  17. ** Avoid running off file descriptors when using multiple -C options.
  18. ** tar --index-file=FILE --file=- sent the archive to FILE, and
  19. the listing to stderr.
  20. version 1.15.91 - Sergey Poznyakoff, 2006-06-16
  21. * Incompatible changes
  22. ** Globbing
  23. Previous versions of GNU tar assumed shell-style globbing when
  24. extracting from or listing an archive. For example:
  25. tar xf foo.tar '*.c'
  26. would extract all files whose names end in '.c'. This behavior
  27. was not documented and was incompatible with traditional tar
  28. implementations. Therefore, starting from this version, GNU tar
  29. no longer uses globbing by default. For example, the above invocation
  30. is now interpreted as a request to extract from the archive the file
  31. named '*.c'.
  32. To treat member names as globbing patterns, use --wildcards option.
  33. If you wish tar to mimic the behavior of versions up to 1.15.90,
  34. add --wildcards to the value of the environment variable TAR_OPTIONS.
  35. The exact way in which tar interprets member names is controlled by the
  36. following command line options:
  37. --wildcards use wildcards
  38. --anchored patterns match file name start
  39. --ignore-case ignore case
  40. --wildcards-match-slash wildcards match `/'
  41. Each of these options has a '--no-' counterpart that disables its
  42. effect (e.g. --no-wildcards).
  43. These options affect both the interpretation of member names from
  44. command line and that of the exclusion patterns (given with --exclude
  45. and --exclude-from options). The defaults are:
  46. 1. For member names: --no-wildcards --anchored
  47. 2. For exclusion patterns: --wildcards --no-anchored --wildcards-match-slash
  48. The options can appear multiple times in the command line, thereby
  49. changing the way command line arguments are interpreted. For example,
  50. to use case-insensitive matching in exclude patterns and to revert to
  51. case-sensitive matching for the rest of command line, one could write:
  52. tar xf foo.tar --ignore-case --exclude-from=FILE --no-ignore-case file.name
  53. ** Short option -l is now an alias of --check-links option, which complies
  54. with UNIX98. This ends the transition period started with version 1.14.
  55. * New features
  56. ** New option --transform allows to transform file names before storing them
  57. in the archive or member names before extracting. The option takes a
  58. sed replace expression as its argument. For example,
  59. tar cf foo.tar --transform 's,^,prefix/,'
  60. will add 'prefix/' to all file names stored in foo.tar.
  61. ** --strip-components option works when deleting and comparing. In previous
  62. versions it worked only with --extract.
  63. ** New option --show-transformed-names enables display of transformed file
  64. or archive. It generalizes --show-stored-names option, introduced in
  65. 1.15.90. In particular, when creating an archive in verbose mode, it lists
  66. member names as stored in the archive, i.e., with any eventual prefixes
  67. removed and file name transformations applied. The option is useful,
  68. for example, while comparing `tar cv' and `tar tv' outputs.
  69. ** New incremental snapshot file format keeps information about file names
  70. as well as that about directories.
  71. ** The --checkpoint option takes an optional argument specifying the number
  72. of records between the two successive checkpoints. Optional dot
  73. starting the argument intructs tar to print dots instead of textual
  74. checkpoints.
  75. ** The --totals option can be used with any tar operation (previous versions
  76. understood it only with --create). If an argument to this option is
  77. given, it specifies the signal upon delivery of which the statistics
  78. is to be printed. Both forms of this option (with and without
  79. argument) can be given to in a single invocation of tar.
  80. * Bug fixes
  81. ** Detect attempts to update compressed archives.
  82. version 1.15.90 - Sergey Poznyakoff, 2006-02-19
  83. * New features
  84. ** Any number of -T (--files-from) options may be used in the command line.
  85. The file specified with -T may include any valid `tar' options,
  86. including another -T option.
  87. Compatibility note: older versions of tar would only recognize -C
  88. as an option name within the file list file. Now any file whose name
  89. starts with - is handled as an option. To insert file names starting with
  90. dash, use the --add-file option.
  91. ** List files containing null-separated file names are detected and processed
  92. automatically. It is no longer necessary to give the --null option.
  93. ** New option --no-unquote disables the unquoting of input file names.
  94. This is useful for processing output from `find dir -print0'.
  95. An orthogonal option --unquote is provided as well.
  96. ** New option --test-label tests the archive volume label.
  97. If an argument is specified, the label is compared against its value.
  98. Tar exits with code 0 if the two strings match, and with code 2 if
  99. they do not.
  100. If no argument is given, the --verbose option is implied. In this case,
  101. tar prints the label name if present and exits with code 0.
  102. ** New option --show-stored-names. When creating an archive in verbose mode,
  103. it lists member names as stored in the archive, i.e., with any eventual
  104. prefixes removed. The option is useful, for example, while comparing
  105. `tar cv' and `tar tv' outputs.
  106. ** New option --to-command pipes the contents of archive members to the
  107. specified command.
  108. ** New option --atime-preserve=system, which uses the O_NOATIME feature
  109. of recent Linux kernels to avoid some problems when preserving file
  110. access times.
  111. ** New option --delay-directory-restore delays restoring modification times
  112. and permissions of extracted directories until the end of extraction.
  113. This is necessary for restoring from archives with unusual member
  114. ordering (in particular, those created with --no-recursion option).
  115. This option is implied when restoring from incremental archives.
  116. ** New option --restrict prohibits use of some potentially harmful tar
  117. options. Currently it disables '!' escape in multi-volume name menu.
  118. ** New options --quoting-style and --quote-chars control the way tar
  119. quotes member names on output. The --quoting-style takes an argument
  120. specifying the quoting style to use (literal, shell, shell-always,
  121. c, escape, locale, clocale). The argument to --quote-chars is a string
  122. specifying characters to quote, even if the selected quoting style
  123. would not quote them otherwise. The option --no-quote-chars is
  124. provided to disable quoting certain characters.
  125. ** The end-of-volume script (introduced with --info-script option) can
  126. get current archive name from the environment variable TAR_ARCHIVE and
  127. the volume number from the variable TAR_VOLUME. It can alter the
  128. archive name by writing new name to the file descriptor 3.
  129. ** Better support for full-resolution time stamps. Tar cannot restore
  130. time stamps to full nanosecond resolution, though, until the kernel
  131. guys get their act together and give us a system call to set file time
  132. stamps to nanosecond resolution.
  133. ** The -v option now prints time stamps only to 1-minute resolution,
  134. not full resolution, to avoid using up too many output columns.
  135. Nanosecond resolution is now supported, but that would be too much.
  136. * Bug fixes
  137. ** Allow non-option arguments to be interspersed with options.
  138. ** When extracting or listing archives in old GNU format, tar
  139. used to read an extra block of data after a long name header
  140. if length of the member name was divisible by block size (512).
  141. Consequently, the file pointer was set off and the next member
  142. was not processed correctly.
  143. ** Previous version created invalid archives when files shrink
  144. during reading.
  145. ** Compare mode (tar d) hanged when trying to compare file contents.
  146. ** Previous versions in certain cases failed to restore directory
  147. modification times.
  148. ** When creating an archive, do not attempt to store files whose
  149. meta-data cannot be stored in the header due to format limitations
  150. (for ustar and v7 formats).
  151. ** The --version option now also outputs information about copyright,
  152. license, and credits. This reverts to the behavior of tar 1.14 and
  153. earlier, and conforms to the GNU coding standards. The --license (-L)
  154. option introduced in tar 1.15 has been removed, since it's no longer
  155. needed.
  156. version 1.15.1 - Sergey Poznyakoff, 2004-12-21
  157. This version fixes a bug introduced in 1.15 which caused
  158. tar to refuse to extract files from standard input.
  159. version 1.15 - Sergey Poznyakoff, 2004-12-20
  160. * Compressed archives are recognised automatically, it is no longer
  161. necessary to specify -Z, -z, or -j options to read them. Thus, you can
  162. now run `tar tf archive.tar.gz'.
  163. * When restoring incremental dumps, --one-file-system option
  164. prevents directory hierarchies residing on different devices
  165. from being purged.
  166. With the previous versions of tar it was dangerous to create
  167. incremental dumps with --one-file-system option, since they
  168. would recursively remove mount points when restoring from the
  169. back up. This change fixes the bug.
  170. * Renamed --strip-path to --strip-components for consistency with
  171. the GNU convention.
  172. * Skipping archive members is sped up if the archive media supports
  173. seeks.
  174. * Restore script starts restoring only if it is given --all (-a) option,
  175. or some patterns. This is to prevent accidental restores.
  176. * `tar --verify' prints a warning if during archive creation some of
  177. the file names had their prefixes stripped off.
  178. * New option --exclude-caches instructs tar to exclude cache directories
  179. automatically on archive creation. Cache directories are those
  180. containing a standardized tag file, as specified at:
  181. http://www.brynosaurus.com/cachedir/spec.html
  182. * New configure option --with-rmt allows to specify full path name to
  183. the `rmt' utility. This supersedes DEFAULT_RMT_COMMAND variable
  184. introduced in version 1.14
  185. * New configure variable DEFAULT_RMT_DIR allows to specify the directory
  186. where to install `rmt' utility. This is necessary since modifying
  187. --libexecdir as was suggested for version 1.14 produced a side effect: it
  188. also modified installation prefix for backup scripts (if
  189. --enable-backup-scripts was given).
  190. * Bug fixes:
  191. ** Fixed flow in recognizing files to be included in incremental dumps.
  192. ** Correctly recognize sparse archive members when used with -T option.
  193. ** GNU multivolume headers cannot store filenames longer than 100 characters.
  194. Do not allow multivolume archives to begin with such filenames.
  195. ** If a member with link count > 2 was stored in the archive twice,
  196. previous versions of tar were not able to extract it, since they
  197. were trying to link the file to itself, which always failed and
  198. lead to removing the already extracted copy. Preserve the first
  199. extracted copy in such cases.
  200. ** Restore script was passing improper argument to tar --listed option (which
  201. didn't affect the functionality, but was logically incorrect).
  202. ** Fixed verification of created archives.
  203. ** Fixed unquoting of file names containing backslash escapes (previous
  204. versions failed to recognize \a and \v).
  205. ** When attempting to delete a non-existing member from the archive, previous
  206. versions of tar used to overwrite last archive block with zeroes.
  207. version 1.14 - Sergey Poznyakoff, 2004-05-11
  208. * Added support for POSIX.1-2001 and ustar archive formats.
  209. * New option --format allows to select the output archive format
  210. * The default output format can be selected at configuration time
  211. by presetting the environment variable DEFAULT_ARCHIVE_FORMAT.
  212. Allowed values are GNU, V7, OLDGNU and POSIX.
  213. * New option --strip-path allows to cut off a given number of
  214. path elements from the name of the file being extracted.
  215. * New options --index-file, --no-overwrite-dir. The --overwrite-dir
  216. option is now the default; use --no-overwrite-dir if you prefer
  217. the previous default behavior.
  218. * The semantics of -o option is changed. When extracting, it
  219. does the same as --no-same-owner GNU tar option. This is compatible
  220. with UNIX98 tar. Otherwise, its effect is the same as that of
  221. --old-archive option. This latter is deprecated and will be removed
  222. in future.
  223. * New option --check-links prints a message if not all links are dumped
  224. for a file being archived. This corresponds to the UNIX98 -l option.
  225. The current semantics of the -l option is retained for compatibility
  226. with previous releases, however such usage is strongly deprecated as
  227. the option will change to its UNIX98 semantics in the future releases.
  228. * New option --occurrence[=N] can be used in conjunction with one of
  229. the subcommands --delete, --diff, --extract or --list when a list of
  230. files is given either on the command line or via -T option. This
  231. option instructs tar to process only the Nth occurrence of each named
  232. file. N defaults to 1, so `tar -x -f archive --occurrence filename'
  233. extracts the first occurrence of `filename' from `archive'
  234. and terminates without scanning to the end of the archive.
  235. * New option --pax-option allows to control the handling of POSIX
  236. keywords in `pax' extended headers. It is equivalent to `pax'
  237. -o option.
  238. * --incremental and --listed-incremental options work correctly on
  239. individual files, as well as on directories.
  240. * New scripts: backup (replaces old level-0 and level-1) and restore.
  241. The scripts are compiled and installed if --enable-backup-scripts
  242. option is given to configure.
  243. * By default tar searches "rmt" utility in "$prefix/libexec/rmt",
  244. which is consistent with the location where the version of "rmt"
  245. included in the package is installed. Previous versions of tar
  246. used "/etc/rmt". To install "rmt" to its traditional location,
  247. run configure with option --libexecdir=/etc. Otherwise, if you
  248. already have rmt installed and wish to use it, instead of the
  249. shipped in version, set the variable DEFAULT_RMT_COMMAND to
  250. the full path name of the utility, e.g., ./configure
  251. DEFAULT_RMT_COMMAND=/etc/rmt.
  252. Notice also that the full path name of the "rmt" utility to
  253. use can be set at runtime, by giving option --rmt-command to
  254. tar.
  255. * Removed obsolete command line options:
  256. ** --absolute-paths superseded by --absolute-names
  257. ** --block-compress is not needed any longer
  258. ** --block-size superseded by --blocking-factor
  259. ** --modification-time superseded by --touch
  260. ** --read-full-blocks superseded by --read-full-records
  261. ** --record-number superseded by --block-number
  262. ** --version-control superseded by --backup
  263. * New message translations fi (Finnish), gl (Galician), hr (Croatian),
  264. hu (Hungarian), ms (Malaysian), nb (Norwegian), ro (Romanian), sk
  265. (Slovak), zh_CN (Chinese simplified), zh_TW (Chinese traditional).
  266. The code 'no' for Norwegian (Bokmål) has been withdrawn; use 'nb' instead.
  267. * Bug fixes.
  268. version 1.13.25 - Paul Eggert, 2001-09-26
  269. * Bug fixes.
  270. version 1.13.24 - Paul Eggert, 2001-09-22
  271. * New option --overwrite-dir.
  272. * Fixes for buffer overrun, porting, and copyright notice problems.
  273. * The message translations for Korean are available again.
  274. version 1.13.23 - Paul Eggert, 2001-09-13
  275. * Bug, porting, and copyright notice fixes.
  276. version 1.13.22 - Paul Eggert, 2001-08-29
  277. * Bug fixes.
  278. version 1.13.21 - Paul Eggert, 2001-08-28
  279. * Porting and copyright notice fixes.
  280. version 1.13.20 - Paul Eggert, 2001-08-27
  281. * Some bugs were fixed:
  282. - security problems
  283. - hard links to symbolic links
  284. * New option --recursion (the default) that is the inverse of --no-recursion.
  285. * New options --anchored, --ignore-case, --wildcards,
  286. --wildcards-match-slash, and their negations (e.g., --no-anchored).
  287. Along with --recursion and --no-recursion, these options control how
  288. exclude patterns are interpreted.
  289. * The default interpretation of exclude patterns is now --no-anchored
  290. --no-ignore-case --recursion --wildcards --wildcards-match-slash.
  291. This is a quiet change to the semantics of --exclude. The previous
  292. semantics were a failed attempt at backward compatibility but it
  293. became clear that the semantics were puzzling and did not satisfy
  294. everybody. Rather than continue to try to revive that dead horse we
  295. thought it better to substitute cleaner semantics, with options so
  296. that you can change the behavior more to your liking.
  297. * New message translations for Indonesian and Turkish.
  298. The translation for Korean has been withdrawn due to encoding errors.
  299. It will be reissued once those are fixed.
  300. version 1.13.19 - Paul Eggert, 2001-01-13
  301. * The -I option has been withdrawn, as it was buggy and confusing.
  302. Eventually it is planned to be reintroduced, with the same meaning as -T.
  303. * With an option like -N DATE, if DATE starts with "/" or ".", it is taken
  304. to be a file name; the last-modified time of that file is used as the date.
  305. version 1.13.18 - Paul Eggert, 2000-10-29
  306. * Some security problems have been fixed. `tar -x' now modifies only
  307. files under the working directory, unless you also specify an unsafe
  308. option like --absolute-names or --overwrite.
  309. * The short name of the --bzip option has been changed to -j,
  310. and -I is now an alias for -T, for compatibility with Solaris tar.
  311. * The manual is now distributed under the GNU Free Documentation License.
  312. * The new environment variable TAR_OPTIONS holds default command-line options.
  313. * The --no-recursion option now affects extraction too.
  314. * The wording in some diagnostics has been changed slightly.
  315. * Snapshot files now record whether each file was accessed via NFS.
  316. The new file format is upward- and downward-compatible with the old.
  317. * New language supported: da.
  318. * Compilation by traditional (K&R) C compilers is no longer supported.
  319. If you still use such a compiler, please use GCC instead.
  320. * This version of tar works best with GNU gzip test version 1.3 or later.
  321. Please see <ftp://alpha.gnu.org/gnu/gzip/>.
  322. * `tar --delete -f -' now works again.
  323. version 1.13.17 - Paul Eggert, 2000-01-07.
  324. * `tar --delete -f -' is no longer allowed; it was too buggy.
  325. * Diagnostic messages have been made more regular and consistent.
  326. version 1.13.16 - Paul Eggert, 1999-12-13.
  327. * By default, tar now refuses to overwrite an existing file when
  328. extracting files from an archive; instead, it removes the file
  329. before extracting it. If the existing file is a symbolic link, the
  330. link is removed and not the pointed-to file. There is one
  331. exception: existing nonempty directories are not removed, nor are
  332. their ownerships or permissions extracted. This fixes some
  333. longstanding security problems.
  334. The new --overwrite option enables the old default behavior.
  335. For regular files, tar implements this change by using the O_EXCL
  336. option of `open' to ensure that it creates the file; if this fails, it
  337. removes the file and tries again. This is similar to the behavior of
  338. the --unlink-first option, but it is faster in the common case of
  339. extracting a new directory.
  340. * By default, tar now ignores file names containing a component of `..'
  341. when extracting, and warns about such file names when creating an archive.
  342. To enable the old behavior, use the -P or --absolute-names option.
  343. * Tar now handles file names with multibyte encodings (e.g., UTF-8, Shift-JIS)
  344. correctly. It relies on the mbrtowc function to handle multibyte characters.
  345. * The file generated by -g or --listed-incremental now uses a format
  346. that is independent of locale, so that users need not worry about
  347. locale when restoring a backup. This is needed for proper support
  348. of multibyte characters. Old-format files can still be read, and
  349. older versions of GNU tar can read new-format files, unless member
  350. names have multibyte chars.
  351. * Many diagnostics have been changed slightly, so that file names are
  352. now output unambiguously. File names in diagnostics now are either
  353. `quoted like this' (in the default C locale) or are followed by
  354. colon, newline, or space, depending on context. Unprintable
  355. characters are escaped with a C-like backslash conventions.
  356. Terminating characters (e.g., close-quote, colon, newline)
  357. are also escaped as needed.
  358. * tar now ignores socket files when creating an archive.
  359. Previously tar archived sockets as fifos, which caused problems.
  360. version 1.13.15 - Paul Eggert, 1999-12-03.
  361. * If a file's ctime changes when being archived, report an error.
  362. Previously tar looked at mtime, which missed some errors.
  363. version 1.13.14 - Paul Eggert, 1999-11-07.
  364. * New translations ja, pt_BR.
  365. * New options --help and --version for rmt.
  366. * Ignore Solaris door files when creating an archive.
  367. version 1.13.13 - Paul Eggert, 1999-10-11.
  368. * Invalid headers in tar files now elicit errors, not just warnings.
  369. * `tar --version' output conforms to the latest GNU coding standards.
  370. * If you specify an invalid date, `tar' now substitutes (time_t) -1.
  371. * `configure --with-dmalloc' is no longer available.
  372. version 1.13.12 - Paul Eggert, 1999-09-24.
  373. * `tar' now supports hard links to symbolic links.
  374. * New options --no-same-owner, --no-same-permissions.
  375. * --total now also outputs a human-readable size, and a throughput value.
  376. * `tar' now uses two's-complement base-256 when outputting header
  377. values that are out of the range of the standard unsigned base-8
  378. format. This affects archive members with negative or huge time
  379. stamps or uids, and archive members 8 GB or larger. The new tar
  380. archives cannot be read by traditional tar, or by older versions of
  381. GNU tar. Use the --old-archive option to revert to the old
  382. behavior, which uses unportable representations for negative values,
  383. and which rejects large files.
  384. * On 32-bit hosts, `tar' now assumes that an incoming time stamp T in
  385. the range 2**31 <= T < 2**32 represents the negative time (T -
  386. 2**32). This behavior is nonstandard and is not portable to 64-bit
  387. time_t hosts, so `tar' issues a warning.
  388. * `tar' no longer gives up extracting immediately upon discovering
  389. that an archive contains garbage at the end. It attempts to extract
  390. as many files as possible from the good data before the garbage.
  391. * A read error now causes a nonzero exit status, not just a warning.
  392. * Some diagnostics have been reworded for consistency.
  393. version 1.13.11 - Paul Eggert, 1999-08-23.
  394. * The short name of the --bzip option has been changed to -I,
  395. for compatibility with paxutils.
  396. * -T /dev/null now matches nothing; previously, it matched anything
  397. if no explicit operands were given.
  398. * The `--' option now works the same as with other GNU utilities;
  399. it causes later operands to be interpreted as file names, not options,
  400. even if they begin with `-'.
  401. * For the --newer and --after-date options, the table of time zone
  402. abbreviations like `EST' has been updated to match current practice.
  403. Also, local time abbreviations are now recognized, even if they are
  404. not in tar's hardwired table. Remember, though, that you should use
  405. numeric UTC offsets like `-0500' instead of abbreviations like
  406. `EST', as abbreviations are not standardized and are ambiguous.
  407. version 1.13.10 - Paul Eggert, 1999-08-20.
  408. * `tar' now uses signed base-64 when outputting header values that are
  409. out of the range of the standard unsigned base-8 format. [This
  410. change was superseded in 1.13.12, described above.]
  411. version 1.13.9 - Paul Eggert, 1999-08-18.
  412. * `tar' now writes two zero blocks at end-of-archive instead of just one.
  413. POSIX.1 requires this, and some other `tar' implementations check for it.
  414. * `tar' no longer silently accepts a block containing nonzero checksum bytes
  415. as a zero block.
  416. * `tar' now reads buggy tar files that have a null byte at the start of a
  417. numeric header field.
  418. version 1.13.8 - Paul Eggert, 1999-08-16.
  419. * For compatibility with traditional `tar', intermediate directories
  420. created automatically by root are no longer given the uid and gid of
  421. the original file or directory.
  422. version 1.13.7 - Paul Eggert, 1999-08-14.
  423. * --listed-incremental and --newer are now incompatible options.
  424. * When creating an archive, leading `./' is no longer stripped,
  425. to match traditional tar's behavior (and simplify the documentation).
  426. * --diff without --absolute-names no longer falls back on absolute names.
  427. version 1.13.6 - Paul Eggert, 1999-08-11.
  428. * An --exclude pattern containing / now excludes a file only if it matches an
  429. initial prefix of the file name; a pattern without / continues to
  430. exclude a file if it matches any file name component.
  431. * The protocol for talking to rmt has been extended slightly.
  432. Open flags are now communicated in symbolic format as well as numeric.
  433. The symbolic format (e.g., "O_WRONLY|O_CREAT|O_TRUNC") is for portability
  434. when rmt is operating on a different operating system from tar.
  435. The numeric format is retained, and rmt uses it if symbolic format is absent,
  436. for backward compatibility with older versions of tar and rmt.
  437. * When writing GNU tar format headers, tar now uses signed base-64
  438. for values that cannot be represented in unsigned octal.
  439. This supports larger files (2**66 - 1 bytes instead of 2**33 - 1 bytes),
  440. larger uids, negative time stamps, etc.
  441. * When extracting files with unknown ownership, tar now looks up the
  442. uid and gid "nobody" on hosts whose headers do not define UID_NOBODY
  443. and GID_NOBODY, and falls back on uid/gid -2 if there is no "nobody".
  444. * tar -t --numeric-owner now prints numeric uids and gids, not symbolic.
  445. * New option -y or --bzip2 for bzip2 compression, by popular request.
  446. version 1.13.5 - Paul Eggert, 1999-07-20.
  447. * Do the delayed updates of file metadata even after a fatal error.
  448. version 1.13.4 - Paul Eggert, 1999-07-20.
  449. * Do not chmod unless we are root or the -p option was given;
  450. this matches historical practice.
  451. version 1.13.3 - Paul Eggert, 1999-07-16.
  452. * A path name is excluded if any of its file name components matches an
  453. excluded pattern, even if the path name was specified on the command line.
  454. Also see 1.13.6 for later changes in this area.
  455. version 1.13.2 - Paul Eggert, 1999-07-14.
  456. * Bug reporting address changed to <[email protected]>.
  457. version 1.13.1 - Paul Eggert, 1999-07-12.
  458. * Bug fixes only.
  459. version 1.13 - Paul Eggert, 1999-07-08.
  460. * Support for large files, e.g., files larger than 2 GB on many 32-bit hosts.
  461. Also, support for larger uids, device ids, etc.
  462. * Many bug fixes and porting fixes.
  463. * This release is only for fixes. A more ambitious test release,
  464. with new features, is available as part of the paxutils. Please see:
  465. ftp://alpha.gnu.org/gnu/paxutils/
  466. The fixes in this release are intended to be merged with paxutils
  467. at some point, but they haven't been merged yet.
  468. * An interim GNU tar alpha had new --bzip2 and --ending-file options,
  469. but they have been removed to maintain compatibility with paxutils.
  470. Please try --use=bzip2 instead of --bzip2.
  471. Version 1.12 - François Pinard, 1997-04.
  472. Sensitive matters
  473. * Use shell globbing patterns for --label, instead of regular expressions.
  474. * Do not quote anymore internally over the quoting done by the shell.
  475. Output for humans
  476. * Offer internationalization capabilities of most recent GNU gettext.
  477. * Messages available in many more languages, thanks to all translators!
  478. * Usage of ISO 8601 dates in listings, instead of local American dates.
  479. * More normalization and cleanup in error messages.
  480. Creation
  481. * For helping using tar with find, offer a --no-recursion option.
  482. * Implement --numeric-owner for ignoring symbolic names at create time.
  483. * New --owner, --group --mode options, still preliminary.
  484. * Recognize creating an archive on /dev/null, so Amanda works faster.
  485. * Object to the creation of an empty archive (like in `tar cf FILE').
  486. * Barely start implementing --posix and POSIXLY_CORRECT.
  487. Extraction
  488. * Make a better job at restoring file and directory attributes.
  489. * Automatically attempt deleting existing files when in the way.
  490. * Option --unlink-first (-U) removes most files prior to extraction.
  491. * Option --recursive-unlink removes non-empty directories when in the way.
  492. * Option --numeric-owner ignores owner/group names, it uses UID/GID instead.
  493. * Use global umask when creating missing intermediate directories.
  494. * When symlinks are not available, extract symbolic links as hard links.
  495. * Diagnose extraction of contiguous files as regular files.
  496. * New --backup, --suffix and --version-control options.
  497. Various changes
  498. * Better support of huge archives with --tape-length and --totals.
  499. * Rename option --read-full-blocks (-B) to --read-full-records (-B).
  500. * Rename option --block-size (-b) to --blocking-factor (-b).
  501. * Rename option --record-number (-R) to --block-number (-R).
  502. * With --block-number (-R), report null blocks and end of file.
  503. * Implement --record-size for introducing a size in bytes.
  504. * Delete --block-compress option and rather decide it automatically.
  505. * Rename option --modification-time to --touch.
  506. Many bugs are squashed, while others still run free.
  507. Version 1.11.8 - François Pinard, 1995-06.
  508. * Messages available in French, German, Portuguese and Swedish.
  509. * The distribution provides a rudimentary Texinfo manual.
  510. * The device defaults to stdin/stdout, unless overridden by the installer.
  511. * Option --sparse (-S) should work on more systems.
  512. * Option --rsh-command may select an alternative remote shell program.
  513. Most changes are internal, and should yield better portability.
  514. Version 1.11.2 - Michael Bushnell, 1993-03.
  515. * Changes in backup scripts: cleaned up considerably; notices error
  516. conditions better over rsh; DUMP_REMIND_SCRIPT is now an option in
  517. backup-specs; new file dump-remind is an example of a
  518. DUMP_REMIND_SCRIPT.
  519. * Superfluous "Reading dirname" was a bug; fixed.
  520. * Incompatibility problems with a bug on Solaris are fixed.
  521. * New option --gzip (aliases are --ungzip and -z); calls gzip instead
  522. of compress. Also, --use-compress-program lets you specify any
  523. compress program. --compress-block is renamed --block-compress and
  524. now requires one of the three compression options to be specified.
  525. * Several error messages are cleaned up.
  526. * Directory owners are now set properly when running as root.
  527. * Provide DUMP_REMIND_SCRIPT in backup-specs as a possible option
  528. for --info-script.
  529. * Behave better with broken rmt servers.
  530. * Dump scripts no longer use --atime-preserve; this causes a nasty probem.
  531. * Several Makefile cleanups.
  532. Version 1.11.1 - Michael Bushnell, 1992-09.
  533. * Many bug fixes.
  534. Version 1.11 - Michael Bushnell, 1992-09.
  535. Version 1.10.16 - 1992-07.
  536. Version 1.10.15 - 1992-06.
  537. Version 1.10.14 - 1992-05.
  538. Version 1.10.13 - 1992-01.
  539. * Many bug fixes.
  540. * Now uses GNU standard configure, generated by Autoconf.
  541. * Long options now use `--'; use of `+' is deprecated and support
  542. for it will eventually be removed.
  543. * New option --null causes filenames read by -T to be
  544. null-terminated, and causes -C to be ignored.
  545. * New option --remove-files deletes files (but not directories)
  546. after they are added to the archive.
  547. * New option --ignore-failed-read prevents read-errors from affecting
  548. the exit status.
  549. * New option --checkpoint prints occasional messages as the tape
  550. is being read or written.
  551. * New option --show-omitted-dirs prints the names of directories
  552. omitted from the archive.
  553. * Some tape drives which use a non-standard method of indicating
  554. end-of-tape now work correctly with multi-tape archives.
  555. * --volno-file: Read the volume number used in prompting the user
  556. (but not in recording volume ID's on the archive) from a file.
  557. * When using --multi-volume, you can now give multiple -f arguments;
  558. the various tape drives will get used in sequence and then wrap
  559. around to the beginning.
  560. * Remote archive names no longer have to be in /dev: any file with a
  561. `:' is interpreted as remote. If new option --force-local is given,
  562. then even archive files with a `:' are considered local.
  563. * New option --atime-preserve restores (if possible) atimes to
  564. their original values after dumping the file.
  565. * No longer does tar confusingly dump "." when you don't tell it
  566. what to dump.
  567. * When extracting directories, tar now correctly restores their
  568. modification and access times.
  569. * Longnames support is redone differently--long name info directly
  570. precedes the long-named file or link in the archive, so you no
  571. longer have to wait for the extract to hit the end of the tape for
  572. long names to work.
  573. Version 1.10 - Michael Bushnell, 1991-07.
  574. * Filename to -G is optional. -C works right. Names +newer and
  575. +newer-mtime work right.
  576. * -g is now +incremental, -G is now +listed-incremental.
  577. * Sparse files now work correctly.
  578. * +volume is now called +label.
  579. * +exclude now takes a filename argument, and +exclude-from does
  580. what +exclude used to do.
  581. * Exit status is now correct.
  582. * +totals keeps track of total I/O and prints it when tar exits.
  583. * When using +label with +extract, the label is now a regexp.
  584. * New option +tape-length (-L) does multi-volume handling like BSD
  585. dump: you tell tar how big the tape is and it will prompt at that
  586. point instead of waiting for a write error.
  587. * New backup scripts level-0 and level-1 which might be useful
  588. to people. They use a file "backup-specs" for information, and
  589. shouldn't need local modification. These are what we use to do
  590. all our backups at the FSF.
  591. Version 1.09 - Jay Fenlason, 1990-10.
  592. Version 1.08 - Jay Fenlason, 1990-01.
  593. Versions 1.07 back to 1.00 by Jay Fenlason.
  594. * See ChangeLog for more details.
  595. Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003,
  596. 2004, 2005, 2006 Free Software Foundation, Inc.
  597. This file is part of GNU tar.
  598. GNU tar is free software; you can redistribute it and/or modify
  599. it under the terms of the GNU General Public License as published by
  600. the Free Software Foundation; either version 2, or (at your option)
  601. any later version.
  602. GNU tar is distributed in the hope that it will be useful,
  603. but WITHOUT ANY WARRANTY; without even the implied warranty of
  604. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  605. GNU General Public License for more details.
  606. You should have received a copy of the GNU General Public License
  607. along with tar; see the file COPYING. If not, write to
  608. the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  609. Boston, MA 02110-1301, USA.
  610. Local variables:
  611. mode: outline
  612. paragraph-separate: "[ ]*$"
  613. end: