1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
|
<HTML>
<HEADER>
<TITLE>Taper version 6 changes</TITLE>
</HEADER>
<BODY BACKGROUND="grey.jpg">
<HR>
<H1><A NAME="069pre2">6.9pre2</A></H1>
<P>Release Date: 29-june-98</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>I have a new e-mail address : yusuf@omen.net.au
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Added a new option in Makefile.common - FIFO_PROBLEMS - to be used
if having problems with FIFO errors.
<LI>If end of tape reached whilst doing an unattended backup, mails the user
an error message
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem with display if backup longer than 2GB
<LI>Problem with backup sets longer than one entry
<LI>Not always doing unattended backups properly
<LI>Was mixing up '-t' and '-T' options, as well as '-p' and '-P' options
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="069pre1">6.9pre1</A></H1>
<P>Release Date: 3-may-98</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Major change in the structure of the info files. Filenames
are stored in a sequential file once only. This greatly reduces
the size of the info files and a small cost in performance.
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Changes to Makefile definitions for glibc
<LI>Added fsr option for SCSI tape drives
<LI>Changed the format of the '-d' listing
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem if there were trailing spaces in relative restore path
<LI>Sometimes incorrectly printing filenames
<LI>Another attempt at the "Inavlid FIFO data" error
<LI>Correctly selects directories/files specified via -U command line
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0684">6.8.4</A></H1>
<P>Release Date: 4-mar-98</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Updated the ncurses requirements - now requires at least 4.1
<LI>Closes info file before printing backup statistics
<LI>Added info in the FAQ about problem with libc5.4.38
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Made changes to try and fix alarm clock messages
<LI>Changes to try and fix broken pipe messages
<LI>If child out of space, wasn't keeping dialog box on top of screen to tell user
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0683">6.8.3</A></H1>
<P>Release Date: 28-dec-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Change in makefile to force making of links to avoid makefile errors
<LI>More extensive error messages in bg_backup
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Floating point exception in backup due to divide by zero
<LI>Error in docs - was tape-erase, instead of erase-tape
<LI>Not checking for end of compressed file list in bg_backup
<LI>Problem with networked backups
<LI>Error in mtree when comparing times
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0682">6.8.2</A></H1>
<P>Release Date: 11-aug-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem with backup set handling
<LI>Problem if tried to do second backup without exiting first
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0681">6.8.1</A></H1>
<P>Release Date: 10-aug-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>New window in selecting backup files - exclude. Allows you
to specify which files to exclude from backup
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Installs links into /bin to point to /sbin - for running cron jobs
<LI>Now sets blocksize before restoring as well
<LI>Removed -fno-common option from Makefile.common
<LI>If directory on exclude list, will backup directory entry, but
not directory contents. Same with /proc filesystem and other mounted file
systems
<LI>Strip excess spaces from preferences entered on command line
<LI>Truncates long filenames in selected windows
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Error if archive consisted of one empty directory only
<LI>Error when trying to restore symbolic links
<LI>Fixed bug that caused incompatibilities between 6.7.4 and the alpha series
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0680a10">6.8.0a10</A></H1>
<P>Release Date: 6-jul-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>When restoring, prompts for location of restoration of files
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Made generic versions of docs/web pages to enable easy update on release of new versions
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Not correctly setting owners on symbolic links
<LI>Forgot to suspend signal handler when waiting for input in backup/restore
<LI>Had the set blocksize/get blocksize error messages around the wrong way
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0680a9">6.8.0a9</A></H1>
<P>Release Date: 30-jun-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Changed the web pages that marked changes - easier to maintain
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Minor bug when trying to compile
</UL>
<BR>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0680a8">6.8.0a8</A></H1>
<P>Release Date: 29-jun-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Supported for glibc-2 (aka libc6)
<LI>Added new preference (--illegal-end-of-tape) for tape drives that don't handle
end of tape errors properly
<LI>Only updates display every 1 second - should help speed throughput of
backups, full restores and recreate info
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Change end of tape handling so that 0 read is interpreted as end of tape
<LI>Reintroduced support for eom - use the preference --use-eom
<LI>Restore/Verify/Recreate info now only open the tape read only
<LI>Added -fno-strength-reduce to cater for those using older gcc
<LI>Prints number of volumes verified
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>tape_tell returning random values
<LI>bug with tapes > 2GB
<LI>bug reallocating buffer sizes via preference menu
<LI>erase volumes now works
<LI>was skipping files after a mounted directory
<LI>error finding most recent files occassionally - due to
variable defined char instead of _u32
<LI>Not removing temporary files if trying to compress an already compressed info file
<LI>If the filename contains a ":" (which means we are using a remote host), when
saving the preference file, taper will not prepend the current path
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0680a7">6.8.0a7</A></H1>
<P>Release Date: 4-may-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Changed ioctl to MTIOCPOS to seek if that makes certain SCSI drives work
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Seg faulting when reading preference file
<LI>
</UL>
<H1><A NAME="0680a6">6.8.0a6</A></H1>
<P>Release Date: 4-may-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Preference to stop taper trying to change permissions on restored files
<LI>Module in utils to attempt to recover corrupt archives
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Prints statistics on a log level of 1
<LI>Yet more logging to try and work out why some tape drives can't seek
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Bug saving tape filename when using files
<LI>When using remote device names, was prefixing with local path
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<H1><A NAME="0680a5">6.8.0a5</A></H1>
<P>Release Date: 21-apr-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<LI>Fixed a few errors in the logging text
<LI>Wasn't compressing info files
<UL>
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0680a4">6.8.0a4</A></H1>
<P>Release Date: 20-April-97</P>
<P>
<UL>
<LI>Support for networked drives - ie. can use the filename "remotemachine:/dev/tape", like tar.
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Optimize level at 6 instead of 2
<LI>Less flickering in restore box
<LI>Uses asm string routines if defined
<LI>Change to make directory routines - slightly more efficient
<LI>Added -I/usr/include/ncurses in the Makefile.common since that's where
the default ncurses header files are now going
<LI>Removed second index file (.2) - to save space - this means that
info files need to be recreated for 6.8.0a4
<LI>When processing info for restore, only loops through archive once,
hence saving time
<LI>When processing info for restore, also looks for most recent entries
then and stores, which means that selecting in restore is a lot faster
<LI>Added some more logging to try and find out why some drives
seek in a manner taper doesn't understand
<LI>Reversed change made a few versions ago - can't ESC back a menu.
Trouble was some xterms send two ESCs when you press ESC, so
was exiting.
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Bug with environment variables NTAPE and TAPE - was ignoring one
<LI>Couldn't reindex files if one or both index files were missing
<LI>Not processing --tape-name preference before -tape-name preference
<LI>Problem toggling between most recent restore and absolute restore if
you had selected the file from a prior volume
<LI>Problem restoring files from multiple volumes in one restore session
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0680a3">6.8.0a3</A></H1>
<P>Release Date: 11-April-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Added some more logging to can seek utility to try and fix
the wangdet problem
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Removed support for eom command introduced into 6.7.4. Too many tape
drives don't like it.
<LI>In erase vols, changed user interface for entering # volumes to delete
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Fixed problem with toggling between incremental and full
backup
<LI>Occassionally, not all filles written out in backup
<LI>Sometimes, wrong volume was written to backup - fixed bug and
auto work around for those backups affected
<LI>Doesn't backup up info files associated with backup being made
<LI>Fixed problem in Makefile - -l$(FORM) -l$(CURSES) rather than the
other way around
<LI>Seg faulting if tried to select a file from the 'on archive' window
<LI>Allowed you to select the same directory multiple times in restore
<LI>In backup, not saving pos_in_archive in index files
<LI>Problem with incremental backups
<LI>Fixed problem with erasing volumes
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0680a2">6.8.0a2</A></H1>
<P>Release Date: 30-mar-97</P>
<P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Updated FAQ to reflect new version of ftape
<LI>In selecting files to restore, can't go up beyond the common
directory.
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem if restore or verify ran out of temporary disk space
<LI>In verify, if the file had gone from disk, it was not deleting the
associated temporary file.
<LI>Not printing time archive backed up in top right window properly.
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0680a1">6.8.0a1</A></H1>
<P>Release Date: 29-mar-97</P>
<P>
NOTE NEW E-MAIL ADDRESS: <A HREF="mailto:yusuf@multiline.com.au">yusuf@multiline.com.au</A>
</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>New option for sizing directories during backup file selection
(-M or --size-dirs). If TRUE (default), then directories are sized
when selecting them in backup module. If FALSE, the nthe directories
are not sized hence no size of backup is displayed.
<LI>New option for unattended backups (-V or --unattended-id). If
an archive ID is specified, then taper will only append unattended
backups to the archive 'ID'. If another archive tape is in the
drive, the backup won't be made and the user mailed
<LI>Major change in info file handling. The info file is now a set
of info files which is in the form of an mtree. This means
that file details are not kept in memory and hence, the system load
is dramatically reduced as is memory usage.
This means that the option --memory-tight has gone. Also, the file
is kept in alphabetical order so the option --sort-dir has gone.
Info files have to be recreated to be used with this version. You
do not have to recreate your backups, just the info files.
<LI>New utility for the new info files. Reindex info file reindexes
the info file in case of corruption. Also, it means that each
index doesn't have to be archived if you want to save the info
files.
<LI>If filenames and paths are longer than fits on the screen, does
what midnight commander does and prints beginning & end of filename
with a '~' in the middle.
<LI>New option in restore and backup windows. Pressing 'D' will
give details about a file/directory.
<LI>New option in restore and backup windows. Pressing 'L' will
enable you to search through the archive or directory for a particular
file
<LI>New option in restore and backup windows. Pressing 'J' will
allow you to jump to a particular directory.
<LI>Taper has a web page at <A HREF="http://www.multiline.com.au/~yusuf/">www.multiline.com.au/~yusuf/</A>
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Changes in the command set in backing and restoring
<UL>
<LI>Selecting a file for backing up or restoring changed from 's' to 'i' (include)
<LI>Saving a backup set changed from 'b' to 's' (save)
<LI>Restoring a backup set changed from 'l' to 'r' (restore)
</UL>
<LI>When saving preferences file names
<UL>
<LI>ESC now aborts the process and ENTER accepts
<LI>Asks for confirmation before saving
</UL>
<LI>Changed handling for block sizes for zftape. Means that you
can't have a block size < 2K.
<LI>Changed the name of the option "hard-link" to "soft-links". This
is in preparation for handling soft and hard links separately.
<LI>Changes to the documentation. The changes file
is in html form. The rest are unchanged.
<LI>ESC goes up a menu
<LI>documentation files are now in the docs directory
<LI>if can't open the backup device at beginning of backup,
tells user about error and gives opportunity to fix it
<LI>aout support in the Makefile is gone
<LI>When tape sizes are given in MB, assumes 1MB = 1,000,000 bytes
because that is what some tape drive manufacturers state
(this way, they can advertise their tape drive as 125MB,
instead of 119MB like it should be)
<LI>Changed size_t to ssize_t as per change in libraries
<LI>When printing an archive directory, prints in archive order and
then alphabetical order
<LI>More logging in backup child
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Error in handling of end of tape: seg faulting if could write
a partial block at end of tape
<LI>If got an I/O error doing unattended backup, segmentation
faulted out - now cleanly exits
<LI>Seg fault if encountered an I/O error while reading and
user tried to RETRY
<LI>Overwrote device file entries sometimes
<LI>If error in mkinfo, was hanging before return to main menu
<LI>Hung if couldn't create write a backup/restore set
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0674">6.7.4</A></H1>
<P>Release Date: 5-aug-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Information in the FAQ about parallel port tape drives.
<LI>Can select the root directory in backup
<LI>New preference : min-before-seek : allows user to specify
how many blocks the tape needs to be advanced before doing
a seek, rather than just streaming
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Removed allocation of zero bytes - wasn't a bug but some compilers
barfed at allocating 0 bytes
<LI>write_null_header returns error if error encountered
<LI>prints version in log file
<LI>since ncurses 1.9.9e, the curses.h file is placed in /usr/include so
the Makefile has been changed to reflect that
<LI>uses eom instead of fsf for appending to tapes - for the few tape
drives that were slightly non-standard
<LI>put a `signed' in front of definition of some variables for
people who were using compilers that didn't default to signed
variables if unspecified
<LI>support for tape drives that commence block numbers that commence
at 1 instead of 0
<LI>if invalid tape in drive when restore selected, still allows you
to browse archives that the system knows about
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>ratios being printed with signs, rather than unsigned
<LI>not correctly resetting sid/gid on restore
<LI>seg faulting on backup abort
<LI>not correctly removing old info file when overwriting archive
<LI>bug in end of tape handling and I/O error handling for backup
<LI>reworked reading/writing errors so they only read/write in
block_sizes even in error conditions
<LI>prints an error message if cannot position on a block
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0673">6.7.3</A></H1>
<P>Release Date: 17-jun-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Nothing
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Removed -fno-common from CFLAGS in Makefile for production
version
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>If get an error while backing up, was not closing backup device
<LI>Problem backing up files after excluded directory
<LI>Bug fix in the file count for verify & restore
<LI>Log file message problem in verifying
<LI>In triple buffering, if child encountered an error, then the
error recovery procedures sometimes got it wrong
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0672">6.7.2</A></H1>
<P>Release Date: 17-jun-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Nothing
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>In the selected window, prints the byte count if less than 1K
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Not removing co-ordinating pipes between write child & taper
<LI>Memory overrun in add_missing_dirs fixed
<LI>Error in restore if backed up one file only
<LI>If had selected a file, backup marked all files with that filename
as prefix as for backup. Didn't backup them up though (ie.cosmetic bug)
<LI>Sometimes, file sizes in backup were not correct
<LI>Bug in not auto-descending of directories
<LI>If selected one file for full backup, was not printing size
correctly - didn't affect backup which was done correctly
(ie.cosmetic bug)
<LI>Screen update in reading volume directory
<LI>Few bugs in the co-ordinating of child writing & main process
<LI>Bug causing errors while creating multiple directories
<LI>In restore, allowed you to put wrong tape in drive
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0671">6.7.1</A></H1>
<P>Release Date: 15-jun-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Nothing
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Use of pipes if using triple buffering to co-ordinate
between parent & child writing process - should help
system load immensely
<LI>Use of IPC_PRIVATE for getting unique shared memory keyss
rather than randomly trying keys
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem in identifying most recent file in multi-volume backup
<LI>Problem with specific tape types handling in preference file
<LI>Problem with re-allocating buffer errors on end of tape
<LI>Memory being free'd twice --> segmentation fault at end of backup
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0670">6.7.0</A></H1>
<P>Release Date: 6-jun-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>If seg faults, tries to write the fact to log file
<LI>Problem using libc 5.3.12 and binutils 2.6.0.12 - make
sure you upgrade to binutils 2.6.0.14 if using libc
5.3.12 if taper doesn't work for you.
No problems if using stable 5.2.x release
<LI>Backup child checks for available disk space - if not enough
waits until there is before compressing
<LI>Error messages printed if restore or backup children cannot
be started
<LI>New option (+/-W) for reconstructing info files on archives
created by taper version < 5.6
<LI>New option (-Y) which specifies the minimum amount of disk
space that must be free before a file is compressed
<LI>Couple improvements to Makefile
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Added a suggestion in the docs about excluding netscape's
cache directories
<LI>When doing a mkinfo/verify/full restore, does not print an
I/O error when advancing to non-existent volume
<LI>Changed default mailing program from deliver to mail
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem with bg_backup & backup getting out of sync if you
changed the exclude compress options
<LI>bg_backup/restore weren't using the temp_dir option if you changed it
via a preference file or via change preferences menu
<LI>Doing a free on a block twice which results in a seg fault
on some machines so all such references removed
<LI>One more instance where a zombie process could end up plugged
<LI>Problem with unattended backup crashing if tape needed overwriting
<LI>Problem if restore had to get some files from one volume and
some from another as part of the same directory to restore
<LI>A few more 1024 filename lengths found and fixed
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0660">6.6.0</A></H1>
<P>Release Date: 19-may-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>New option (--tmp-dir or -P) which allows user to specify where
temporary files should be stored - default is /usr/tmp
<LI>New option (--one-file-system or -N) which tells taper not
to descend other filesystems
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>In the docs, now specifies that taper is not really designed
for more than 30,000 files unless lots of memory is on hand
(this will be addressed in a future version)
<LI>When doing a selective restore, does not keep on searching through
whole info file
<LI>Workaround for "device busy" errors (problem with files not being
automatically closed on program termination)
<LI>Aligns variables to 8 byte boundary (rather than 4 byte). To
accommodate 64 bit machines (ie. Alpha)
<LI>Found a couple of more unaligned references
<LI>Removed all references to longs
<LI>Compiles cleanly - ie. no warnings
<LI>Couple more log messages when reading in volume header
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Bug fix in string fields in forms
<LI>Bug fix in automatically not sizing excluded directories
<LI>If backing up file uncompressed, then was opening file read/write
<LI>If problem compressing file, wasn't removing temporary files
resulting in /tmp left with lots of undeleted files
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0651">6.5.1</A></H1>
<P>Release Date: ??</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Nothing
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Changed the # in the sgml to &num so that it would work
on postscript & html conversions
<LI>If a directory is excluded, automatically doesn't size through
tree
<LI>Can abort sizing of directories in selecting files for backup
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Fixed a few errors is sgml file
<LI>Seg fault occassionally in unattended backup
<LI>Properly prints message about directories/files not found in
unattended mode
<LI>Totally closes file while getting next tape
<LI>In menu, test mktape & test fast fsf were swapped
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0650">6.5.0</A></H1>
<P>Release Date: 24-apr-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Compresses info files (can be turned off)
<LI>Info files are now stored in little endian format and
converted as necessary so are portable between machines
<LI>If for some reason taper seg faults, attempts to clean up -
ie. free memory & shared memory segments
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>The magic number of volumes and tapes was changed to be a full
four byte magic number. This was because when using big endian
machines, taper was taking the zeros of the magic number to be
leading zeroes
<LI>Also excludes .bmp files from compression by default
<LI>When making code more ansi compliant, the length of filenames
became 1024 from 255. This resulted in significantly more
memory usage. Changed back to 255.
<LI>Removed the proceeding . from all file names (ie. .taper_log -->
taper_log, .taper_info --> taper_info, .taper_prefs --> taper_prefs)
<LI>As per ANSI, all references to inline removed
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>If tape drive returned end of tape while doing mkinfo, tape size info
was sometimes not correctly restored
<LI>Bug in using regular files with new intelligent restore
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="064a">6.4a</A></H1>
<P>Release Date: 23-apr-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Nothing
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>No Changes
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem compiling with gcc fixed
<LI>Better handling of boundary code (porting issue)
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0640">6.4.0</A></H1>
<P>Release Date: 22-apr-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>New info file format - to accommodate more intelligent restoration
<LI>More intelligent restoration - automatically skips to the correct tape
AND correct block for restoration - avoids those long reads before
getting to the file that you want
<LI>New tape drive option - can_seek - TRUE if your drive supports a
seek operation, FALSE otherwise
<LI>New utility for above - test can_seek
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>If doing a normal restore and encounter a checksum error,
doesn't ask if end of backup - only asks when doing
recreate info, verify backup and full restore
<LI>When compiling taper static, also compiles bg_restore & bg_backup
static
<LI>Change make info to recreate info file in main menu
<LI>Saving preferences done from another menu
<LI>Removed test leading zeroes - not needed anymore
<LI>fi.act_size reflects size of a soft link
<LI>If checksum error for file, still restores the file (even though
it may be corrupt)
<LI>Couple of changes to make source strictly ANSI (including removing
alloca function call)
<LI>If reading multiple of block sizes, was reading an extra block
that was not required
<LI>After a message box option is selected, the selected option is
printed in bold (poor man's hack of 3D push effect)
<LI>If not compiled with triple buffering, doesn't print error/warning
counts in restore
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Major backups in restore when using memory-tight version
(introduced in 6.3 due to boundary code)
<LI>Matched documentation and program on --sort-dirs option
<LI>Bug in background restore/backup when triple buffering off
<LI>Fixed a few cosmetic things with error handling
<LI>Few bugs in non triple buffering code
<LI>Few bugs with the memory tight version caused by boundary constraints
<LI>Fixes up counts which were slightly off
<LI>Bug if taper ran out of space on the very last block of the
tape
<LI>When doing a verify, was starting log file with `restore'
<LI>Serious bug fix - occurred in some instances when gcc was not
zeroing un-initialized variables
<LI>Fixed static compiling problem
<LI>Minor screen painting problem when prompting for new tapes
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0631">6.3.1</A></H1>
<P>Release Date: 20-apr-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Nothing
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Prints a message to the log file if aborted backup
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem in preference file saving of x-tape and x-ntape
<LI>In preference file handling, not properly handling preference
filename on some occassions
<LI>When changing preferences, some string fields were not correctly
being changed
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0630">6.3.0</A></H1>
<P>Release Date: 13-apr-96</P>
<P>NOTE My new address - yusuf@nagree.u-net.com</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Code added to support big endian machine. Taper writes all
32 bits as little endian to tape. Will convert this to
big endian if required - set the appropriate Makefile
option
<LI>Pads strings in memory out to a multiple of 4 bytes - to help
ensure that structures only occur on 4 byte boundaries. For
porting to machines that require this
<LI>time_t, uid_t, gid_t, dev_t are now hard coded - so that
archives will be more compatible accross different
architectures
<LI>New option - --tape-size (-Z) allows you to specify the size
of a tape (in megabytes). When taper reaches this, automatically
assumes end of tape. For use with tape drives that have
non-standard end of tape handling. If set to 0 or -1, then
taper automatically handles end of tapes.
<LI>Retry/Abort option if reading/writing to tape fails
<LI>Full restore mode - if no info file found, asks whether the whole
archive should be restored
<LI>Verify option - does a byte by byte compare of the disk file
and the tape file
<LI>User allowed to abort when asking for new tape during backup -
of course, archive will be invalid
<LI>If backup gets killed (power failure, user kills), doing a mkinfo
will attempt to recover the backup - if an illegal checksum
is encountered, the user will be asked if this means the
end of the backup (say yes if backup was killed)
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>The double buffer is now a fixed size of 64K (hard coded) so
it doesn't have to be constantly allocated/reallocated with
changes in block size
<LI>Also changed the buffer size to 32K for removable & regular
files
<LI>Added a ranlib command to compress lib - faster linking
<LI>Hacked gzip code a bit further to accommodate older C libraries
<LI>Changed reference in makefile from /usr/src/linux/include/linux to
/usr/include/linux to accommodate those that have their linux
source tree is a non-standard location
<LI>You must specify tape type on command line (or preference file) -
doesn't default to file type automatically
<LI>Temporary files are given a name taper_xxxxx so that taper
files can be easily identified
<LI>Separate programs for background compress & restore. They are
smaller than taper and use a lot less memory than taper. This
should result in less overall memory requirements than the
old way of forking of taper children
<LI>If you have get_blksize option enabled, automatically enables
set_blksize
<LI>Better handling of read/write errors
<LI>Better handling of end of tape conditions
<LI>If problem opening new tape in multi-tape backups, doesn't abort,
but reprompts
<LI>Changed from signed --> unsigned to allow selections up to 4GB
<LI>If mkinfo encounters an error, doesn't leave a half empty info file
<LI>Errors while changing tapes are not counted as errors for the
error count
<LI>Internal error message if inconsistency with memory allocation
<LI>Excludes the log file from the backup
<LI>Added ENODATA as another possibility for end of tape
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Even if you had log level set to 0, some log messages were being
written
<LI>If a file grows while being backed up, does not cause backup integrity
to be violated. Only the particular file won't be complete.
<LI>Major problems if end of tape occurred on an exact block boundary
<LI>Fixed the unattended backup option which got broken somehow
and also added a few more messages into the mail message
<LI>Bug with test_fastfsf and zftape causing seg faulting - basically,
if zftape returns a block count of 1, assumes that this is not
valid
<LI>Not removing taper.8.gz in make uninstall
<LI>Bug in color-selected preference
<LI>Closes tape in check_tape now.
<LI>Bug in preference file handling with tape specific options - clash
between regular files and ftape
<LI>Conflict between --tape-overwrite and --tape command line options
therefore, --tape changed to --tape-name and --ntape changed to
--ntape-name
<LI>If could only write < 64 bytes to new tape in multi-tape backup,
was seg faulting
<LI>If only needed to write one block to a new tape in multiple tape
backups, was not doing this, but discarding the block.
<LI>For zftape driver, was getting in infinite loop if couldn't get
tape header properly sometimes
<LI>In mkinfo, was printing fatal error, when really wasn't a fatal
error (on advancing to last volume). Didn't affect mkinfo - just
a cosmetic problem with log file
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0620">6.2.0</A></H1>
<P>Release Date: 16-jan-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Another compression method added - this is based on gzip - in
fact, most of the code is ripped straight out of the gzip
code. Advantage is that the whole file doesn't have to
be read into memory for compression - hence lower memory
usage - slight penalty on speed, of course.
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>For compress 2, buffers are allocated at start of
taper instead of continually allocating/deallocating
<LI>Doesn't refer to longs and ints etc.. They are all typedefed.
Now, when moving to another operating system, just have to
change typedefs.
<LI>Tightened up memory a bit more - frees memory as soon as
it's not needed, rather than waiting to end of procedure
<LI>Removed the LIBPATH=-L/usr/lib in the Makefile to avoid
signal 11 errors in some distributions
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Major bug in internal compression routines for files > 32K
<LI>Files not being closed in backup routines on certain
errors
<LI>Bug if archive only contained one file
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0612a">6.1.2a</A></H1>
<P>Release Date: 16-jan-96</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Nothing
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Mentioned that need at least gcc 2.6.1 to compile
<LI>Can use home/end keys in the menu
<LI>More logging with regard to forking of children
<LI>Removed superflous reading error messages
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>In restore, was printing info messages to log file
even if log level set to errors only
<LI>Problem if deleting exclude preferences with
residual space
<LI>Divide by zero error in backup if didn't backup any files
<LI>Problem is only files selected for backup and not directories
<LI>Problem with files not appearing in restore windows because of
negative checksums
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0611">6.1.1</A></H1>
<P>Release Date: 31-dec-95</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>New utility checks to see if you have recursive links
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Now use the file info from the info file and not the tape
when restoring. Thus, if there's a problem with the
file info on tape, it can be overcome if you have an
intact info file. Also, uses volume header from info
file rather than tape.
<LI>Use alloca for locally defined memory blocks. Less chance
of memory leaks
<LI>In backup, when erasing tape, writes a null header so that
in future, tape is recognized as blank
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Saving taper.1 as taper.1 in man/cat8 therefore, man page
not being found - changed taper.1 to taper.8
<LI>Made checksums absolute value to avoid problems with wrap
arounds
<LI>Workaround to make it work with zftape 1.03
<LI>Problem with the TRIPLE_BUFFERING system - SERIOUS bug
since backup integrity could be affected
<LI>Not closing tape device in test fast fsf
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0610">6.1.0</A></H1>
<P>Release Date: 31-dec-95</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>Can exclude directories from the backup using the
--exclude-dirs (-R) options. It is case sensitive
and recursive. Default is "/tmp /usr/tmp /var/tmp".
<LI>Can limit the size of log files via new preference. If
the log file is too big, the beginning of the log file
is removed. Preferences is --limit-log-file num (-L)
where num is the max number of megabytes (default 2)
the log file should be.
<LI>Makefile target to allow making of a statically linked
taper for use in rescue disks
<LI>New option in utilities menu - test make tape determines
whether your tape drive requires the use of make tape
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Made Makefile slightly more efficient
<LI>Made recursively sizing directories a bit quicker
<LI>In backup/restore selection, file sizes are now in KB
<LI>Removed the missed memory segment message in log - wasn't an
error but was confusing too many people
<LI>Man page in section 8 instead of section 1.
<LI>Slight change in preference file handling to accommodate multiple
preferences for different tape drivers. See the section
Special preferences in the documentation for details
<LI>Changed the default device names for zftape to qft0 & nqft0
<LI>Changed the process_dir to a non-recursive routine - people
were running out of stack space on large directories
<LI>Use the process_dir routine in backup
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Divide by zero error when writing stats to log if took
0 seconds for backup/mkinfo
<LI>Bug if the temporary file directory was mounted on a different
device to the restore directory
<LI>In mkinfo, closes the info file after use - should fix a lot of
problems
<LI>Mkinfo prints the title line correctly
<LI>Ignores errors on tape_fsf in mkinfo - if it gets an error,
assumes end of archive reached
<LI>Mkinfo prints errors if unable to write to the info file
<LI>Does a waitpid to prevent zombie children
<LI>Invalid argument errors when doing a test_fastfsf
<LI>In preference file, was always setting Y/N preferences to Y
<LI>When saving preference to preference file, was ignoring any
name other than ~/.taper_prefs
<LI>Bug in the handling of long Y/N options
<LI>Bug in deleting selected entries in backup
<LI>Bug if specifying preference file on command line
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<HR>
<H1><A NAME="0600">6.0.0</A></H1>
<P>Release Date: 17-dec-95</P>
<IMG SRC="aninew.gif" ALT="New" ALIGN=CENTER> <STRONG>New</STRONG>
<UL>
<LI>The ancillary programs have been merged with the main taper
program. Everything is accessed from the set of menus -
where_proc, testfast_fsf, testzero etc.. are all in
the utilities menu.
<LI>The compile time settings for different tape drives have
been changed to runtime options - you just start taper
with the -T (--tape-type) option to use different tape
drives. Alternatively, you can set it in your preference
file or in the environment (TAPE_TYPE).
<LI>You are now able to delete the last 'n' volumes on an
archive. The files are permanently removed.
<LI>Most of the Makefile options have gone and are replaced by
run-time options.
<LI>Colors can be set from command line - long names only
<LI>Support for removable media including floppies
<LI>At end of backup/restore/mkinfo, prints stats about backup and
also writes to the log
</UL>
<IMG SRC="anilight.gif" ALT="Traffic Lights" ALIGN=CENTER> <STRONG>Changes</STRONG>
<UL>
<LI>Changed the exit key from preference menu to ESC (was F10)
<LI>Major change in header file structures/organization - mainly to
make maintenance a bit easier
<LI>Backup now checks to make sure that the archive you are appending
agrees with the tape in the drive.
<LI>Change in the info file format to accommodate remountable/floppy
drives. Run mkinfo/check archive on all archives created prior
to version 6.0 - you do NOT have to re-backup.
<LI>Major change in the background write code. Now it only forks
off one child - should help people who had problems with
running out of processes and virtual memory in 5.6
<LI>The long command line options (GNU style) and the preference
file options are now the same. Most of the preference
file options have changed name. You will have to rebuild
any preference files you have.
<LI>Lot of changes in code handling preferences. A lot easier to
add preferences etc.. now
<LI>If have an illegal preference, prints an error
<LI>Two new variables, have_rewind, have_fsf - should allow easier
addition of new backup devices
<LI>If there's no tape in drive, will print an error message
before it lets you select files for backup
<LI>If can't fork for a write, the parent will try and write
<LI>Another hack to overcome a problem in zftape - to do with
block sizes when a new tape is inserted
</UL>
<IMG SRC="anibug.gif" ALT="Bug" ALIGN=CENTER> <STRONG>Bug Fixes</STRONG>
<UL>
<LI>Problem in Makefile - not able to make taper.1 properly
<LI>Plugged some shared memory leaks
<LI>Exclude list was case sensitive
<LI>Problems with children not closing the tape device so parent
was getting device busy/resource busy errors
<LI>A few bug fixes in the multiple tape code
<LI>Bug in restore caused it to hang on certain occassions -
cross use of _still_writing
<LI>Error messages on setting links & permissions
<LI>When printing archive directory to screen, was not printing
volume selections correctly. Also printing negative
volume numbers.
<LI>Not printing archive differences with -A
<LI>When changing preferences, if first line was a selection, was
not printing the selected option in reverse
</UL>
<A HREF="CHANGES.html#TOP">Top</A>
<P>
<IMG SRC="tape.gif" ALT="taper" ALIGN=CENTER WIDTH=32 HEIGHT=32> <A HREF="index.html">Home</A>
<HR>
<TABLE>
<TR><TD ROWSPAN=4><IMG SRC="smoke.gif" ALT="Smoke Free" WIDTH=81 HEIGHT=121></TD>
<TD><IMG SRC="pawprint.gif" ALT="Paw Print" WIDTH=70 HEIGHT=59></TD></TR>
<TR><TD>Author: <EM>Jolyon Forsyth</EM></TD></TR>
<TR><TD>Email: <A HREF="mailto:jolyon@multiline.com.au">jolyon@multiline.com.au</A></TD></TR>
</TABLE>
</BODY>
</HTML>
|