<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Backup with TAR in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034871#M133294</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;What I am doing wrong ?&lt;BR /&gt;&lt;BR /&gt;My crontab file has:&lt;BR /&gt;0 3 * * *     /home/test/backup.sh 2&amp;gt; /tmp/log.err || mail -s "Error backup.sh" my_email@domain.com &amp;lt; /tmp/log.err&lt;BR /&gt;&lt;BR /&gt;And the file /home/test/backup.sh has:&lt;BR /&gt;find / -depth -print | cpio -ocBv &amp;gt; /dev/st0 2&amp;gt;&amp;gt; /tmp/log.err&lt;BR /&gt;&lt;BR /&gt;I want to run this crontab and if an error occurs list it in /tmp/log.err then send this file to me by email, but it does not work and if no error occurs I want that while the files are copied to tape a list of the files on tape is created in /tmp/Log_files_on_tape.txt simultaneously. How can I redirect the output os the "find" command listed to this file (/tmp/Log_files_on_tape.txt) ?&lt;BR /&gt;&lt;BR /&gt;Thanks once more,&lt;BR /&gt;Mauro&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 30 Jul 2003 11:28:48 GMT</pubDate>
    <dc:creator>Mauro_8</dc:creator>
    <dc:date>2003-07-30T11:28:48Z</dc:date>
    <item>
      <title>Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034855#M133278</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have this configuration &lt;BR /&gt;&lt;BR /&gt;Filesystem   Use%   Mounted on&lt;BR /&gt;/dev/sda1    80%    /&lt;BR /&gt;/dev/sdb1    84%    /home&lt;BR /&gt;/dev/sda4    76%    /opt&lt;BR /&gt;&lt;BR /&gt;and want to do a full backup for this machine. So , if I do "tar cvf /dev/st0 /* " it will backup all files in this machine ?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Mauro</description>
      <pubDate>Mon, 28 Jul 2003 11:23:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034855#M133278</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-07-28T11:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034856#M133279</link>
      <description>Hi Mauro.&lt;BR /&gt;I would suggest cpio.&lt;BR /&gt;&lt;BR /&gt;#!/sbin/sh&lt;BR /&gt;#  set -x&lt;BR /&gt;today_=`date +'%y-%m-%d'`; export today_&lt;BR /&gt;#&lt;BR /&gt;LOG1=/usr/tmp/cpio_${today_}.1st; export LOG1&lt;BR /&gt;#&lt;BR /&gt;PATH=$PATH:/usr/local/bin&lt;BR /&gt;export PATH&lt;BR /&gt;exec &amp;gt; /usr/tmp/cpio_${today_}.log 2&amp;gt;&amp;amp;1&lt;BR /&gt;#&lt;BR /&gt;   #&lt;BR /&gt;   find     /                       -depth -print | cpio -ocBv &amp;gt; /dev/rmt/0m   2&amp;gt;&amp;gt; ${LOG1} &amp;amp;&lt;BR /&gt;   first_cpio=$!; export first_cpio&lt;BR /&gt;    #&lt;BR /&gt;    wait $first_cpio&lt;BR /&gt;&lt;BR /&gt;    if test $? -ne 0; then&lt;BR /&gt;     echo "Full Offline Backup did not complete successfully!"&lt;BR /&gt;    fi&lt;BR /&gt;   echo "Time is: `/bin/date`"&lt;BR /&gt;   echo "Time is: `/bin/date`"&lt;BR /&gt;   echo "Time is: `/bin/date`" &amp;gt;&amp;gt; ${LOG1}&lt;BR /&gt;~&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;END OF SAMPLE.&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes</description>
      <pubDate>Mon, 28 Jul 2003 11:25:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034856#M133279</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2003-07-28T11:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034857#M133280</link>
      <description>Yes, your tar command will backup everything.&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Jul 2003 11:27:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034857#M133280</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2003-07-28T11:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034858#M133281</link>
      <description>cd /&lt;BR /&gt;tar cv *&lt;BR /&gt;&lt;BR /&gt;tar defaults to the first tape device.&lt;BR /&gt;&lt;BR /&gt;This will back up every file on the box that is on a mounted filesystem.&lt;BR /&gt;&lt;BR /&gt;It will not in any way back up the LIF area or other important boot files.  Its value is to back up data only up to 2 GB, 8 GB if you have the latest HP tar patch.&lt;BR /&gt;&lt;BR /&gt;If you want a usable bootable tape that can restore a working system, make_tape_recovery&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 28 Jul 2003 11:29:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034858#M133281</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-07-28T11:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034859#M133282</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;My full backup should have 20GB and I am getting problems while running it because some file system did not appears in my tape.&lt;BR /&gt;&lt;BR /&gt;I have a lot of files with 200MB. Is it a problem when using TAR ?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Mauro</description>
      <pubDate>Mon, 28 Jul 2003 11:36:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034859#M133282</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-07-28T11:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034860#M133283</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;tar cvf &lt;DEVICE&gt; /&lt;BR /&gt;will backup the full system as / is the mount point for all file systems&lt;/DEVICE&gt;</description>
      <pubDate>Mon, 28 Jul 2003 11:38:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034860#M133283</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2003-07-28T11:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034861#M133284</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;How can I restore with cpio ?&lt;BR /&gt;&lt;BR /&gt;I will test it.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Mauro</description>
      <pubDate>Mon, 28 Jul 2003 11:47:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034861#M133284</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-07-28T11:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034862#M133285</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;tar can handle upto 8GB, since your data is more than that, i would recommend using make_tape_recovery (ignite backup)&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Jul 2003 11:48:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034862#M133285</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2003-07-28T11:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034863#M133286</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if the file is in cpio format, to extract&lt;BR /&gt;#cpio -icdv &amp;lt; file_name</description>
      <pubDate>Mon, 28 Jul 2003 12:03:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034863#M133286</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2003-07-28T12:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034864#M133287</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Can I restore only any files ? For example, /home/mauro/backup/file_1.txt.&lt;BR /&gt;&lt;BR /&gt;With the command listed I think I am gong to restore all files on tape. Am I right ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Mauro</description>
      <pubDate>Mon, 28 Jul 2003 12:35:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034864#M133287</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-07-28T12:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034865#M133288</link>
      <description>You can restore one file:&lt;BR /&gt;tar xv /path/to/the/file</description>
      <pubDate>Mon, 28 Jul 2003 13:17:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034865#M133288</guid>
      <dc:creator>Tomek Gryszkiewicz</dc:creator>
      <dc:date>2003-07-28T13:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034866#M133289</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;with cpio utility, in order to&lt;BR /&gt;restore one file, try this :&lt;BR /&gt;&lt;BR /&gt;#cpio -icdv /home/mauro/backup/file_1.txt &amp;lt; file_name &lt;BR /&gt;&lt;BR /&gt;Hih</description>
      <pubDate>Mon, 28 Jul 2003 13:25:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034866#M133289</guid>
      <dc:creator>Piergiacomo Perini</dc:creator>
      <dc:date>2003-07-28T13:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034867#M133290</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;cpio works fine but when I try to list the files on tape using cpio -ivt &amp;lt; /dev/st0 it shows the files with some strange characters. The blank space is shown "\" or the letter ?? (portuguese) has problems, for example, the file "/home/mauro/Finan??as" appears "/home/mauro/Finan\347as". What should it be ? When I want to restore can I use :&lt;BR /&gt;cpio idv "/home/mauro/Finan??as" or I should use "/home/mauro/Finan\347as" ?&lt;BR /&gt;&lt;BR /&gt;Thanks once more,&lt;BR /&gt;Mauro</description>
      <pubDate>Mon, 28 Jul 2003 15:28:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034867#M133290</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-07-28T15:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034868#M133291</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;I think that you should use tar,&lt;BR /&gt;when you made tar for / it arcive all the&lt;BR /&gt;files and not check for LVs that is mounted.&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Mon, 28 Jul 2003 19:45:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034868#M133291</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-07-28T19:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034869#M133292</link>
      <description>tar will handle thousands of gigabytes of data. It will NOT backup any file that is larger than 2Gb. A recent HP-UX patch for tar extends this limit to 8Gb for a single file (still no limit on the total backup). However, the resultant tar tape (with files larger than 2Gb) cannot be restored on any other version of Unix without this special version of tar. And note that tar cannot be used to restore a system that cannot boot. For HP-UX, you need to use make_tape_recovery from the Ignote/UX package.&lt;BR /&gt;&lt;BR /&gt;Note that the above device files for disks and tape do not look like HP-UX but the comments about standard tar still apply.</description>
      <pubDate>Tue, 29 Jul 2003 01:38:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034869#M133292</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-07-29T01:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034870#M133293</link>
      <description>hello Mauro&lt;BR /&gt;&lt;BR /&gt;I think you are in the wrong place &lt;BR /&gt;/dev/sda1 and /dev/st0 are Linux not HP-UX&lt;BR /&gt;&lt;BR /&gt;Still most of the info here above can be usefull,&lt;BR /&gt;&lt;BR /&gt;On my linux I use dump to do full backup, from single user mode to backup each valid mount points in /etc/fstab, (valid that is not cd,nfs,floppys... etc)&lt;BR /&gt;&lt;BR /&gt;like:&lt;BR /&gt;&lt;BR /&gt;-----------------&lt;SMALL example=""&gt;--------------&lt;BR /&gt;#!/bin/bash&lt;BR /&gt;#mt -f /dev/st0 rewind&lt;BR /&gt;#dump -0a -f /dev/nst0 /  &lt;BR /&gt;#dump -0a -f /dev/nst0 /usr&lt;BR /&gt;#dump -0a -f /dev/nst0 /home&lt;BR /&gt;#mt -f /dev/st0 rewind&lt;BR /&gt;-----------------&lt;END of="" example=""&gt;------------&lt;BR /&gt;&lt;BR /&gt;to restore (single user) you could do  &lt;BR /&gt;&lt;BR /&gt;#cd /&lt;BR /&gt;#mt -f /dev/st0 rewind&lt;BR /&gt;#restore -x -f /dev/nst0&lt;BR /&gt;This is for none interarive full restore&lt;BR /&gt;&lt;BR /&gt;to restore on file in multi user mode do&lt;BR /&gt;&lt;BR /&gt;#cd /usr&lt;BR /&gt;#mt -f /dev/st0 rewind&lt;BR /&gt;#mt -f /dev/st0 fsf 1&lt;BR /&gt;#restore -i -f /dev/nst0&lt;BR /&gt;&lt;BR /&gt;this will put you in interactive restore with prompt &lt;BR /&gt;&lt;BR /&gt;restore &amp;gt; &lt;BR /&gt;&lt;BR /&gt;from there you can interactively mark file you want to restore ...&lt;BR /&gt;&lt;BR /&gt;in this enviroment ls help extract are valid command just do a ? or help to get started&lt;BR /&gt;&lt;BR /&gt;needless to say out have to test this on a test system before you fell at ease with the whole scenario.&lt;BR /&gt;&lt;BR /&gt;I have put in place an automatic shutdown single user/backup/continue boot that those all the backup from crontab on given time/day.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can also use tar as describe above, but to get a full/valid backup I would boot single user mode then do &lt;BR /&gt;&lt;BR /&gt;#mt -f /dev/st0 rewind&lt;BR /&gt;#tar -cvzf /dev/st0 /&lt;BR /&gt;&lt;BR /&gt;to restore full&lt;BR /&gt;&lt;BR /&gt;boot installation cd start install until ask about partition of disk (do this if this is a new disk "you then better have saved your partition info some where safe") from there escape to shell "&lt;CTRL&gt;&lt;ALT&gt;&lt;F3&gt; &lt;BR /&gt;&lt;BR /&gt;this will get you to a shell prompt &lt;BR /&gt; &lt;BR /&gt;from there you can restore with something like&lt;BR /&gt;(This is to long to describe in details)&lt;BR /&gt;&lt;BR /&gt;tar -xvzf /dev/st0 "here your mount point.. something like /mnt/old_root&lt;BR /&gt;&lt;BR /&gt;to restore individual files just do &lt;BR /&gt;#tar -xvzf /dev/st0 /usr/whatever_it_is&lt;BR /&gt;&lt;BR /&gt;But I should stress that all this is from memory please test it and check, also there is a lot more to valid backup/restore then meet the eyes "like you must consider keeping in a safe place a report of you system's bios,disk,partions,network setup ... a long list" to begin to feel you could perhaps if you are lucky survive a main disater.&lt;BR /&gt;&lt;BR /&gt;Hope you find some of this usefull &lt;BR /&gt;&lt;BR /&gt;Jean-Pierre&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/F3&gt;&lt;/ALT&gt;&lt;/CTRL&gt;&lt;/END&gt;&lt;/SMALL&gt;</description>
      <pubDate>Tue, 29 Jul 2003 09:24:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034870#M133293</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2003-07-29T09:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034871#M133294</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;What I am doing wrong ?&lt;BR /&gt;&lt;BR /&gt;My crontab file has:&lt;BR /&gt;0 3 * * *     /home/test/backup.sh 2&amp;gt; /tmp/log.err || mail -s "Error backup.sh" my_email@domain.com &amp;lt; /tmp/log.err&lt;BR /&gt;&lt;BR /&gt;And the file /home/test/backup.sh has:&lt;BR /&gt;find / -depth -print | cpio -ocBv &amp;gt; /dev/st0 2&amp;gt;&amp;gt; /tmp/log.err&lt;BR /&gt;&lt;BR /&gt;I want to run this crontab and if an error occurs list it in /tmp/log.err then send this file to me by email, but it does not work and if no error occurs I want that while the files are copied to tape a list of the files on tape is created in /tmp/Log_files_on_tape.txt simultaneously. How can I redirect the output os the "find" command listed to this file (/tmp/Log_files_on_tape.txt) ?&lt;BR /&gt;&lt;BR /&gt;Thanks once more,&lt;BR /&gt;Mauro&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Jul 2003 11:28:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034871#M133294</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-07-30T11:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034872#M133295</link>
      <description>Ooooops..&lt;BR /&gt;&lt;BR /&gt;I forgot to say that probably the output of the find command is goint to /tmp/log.err !?&lt;BR /&gt;&lt;BR /&gt;I really do not understand...&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Mauro</description>
      <pubDate>Wed, 30 Jul 2003 11:31:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034872#M133295</guid>
      <dc:creator>Mauro_8</dc:creator>
      <dc:date>2003-07-30T11:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Backup with TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034873#M133296</link>
      <description>Mauro,&lt;BR /&gt;&lt;BR /&gt;The question is how large are your filesystems.&lt;BR /&gt;There is no limit ot how much you can put on a tape with tar or cpio, as you may span tapes etc.&lt;BR /&gt;&lt;BR /&gt;If your filesystems are larger than 8 GB, scrap the tar idea. Go spend some money on &lt;BR /&gt;Microlite's BackupEdge. You can download a trial copy. It creates a tar archive, does compression, you can use tons of buffer size to speed the backup along. It also is the best tool for saving one's hash when necessary.&lt;BR /&gt;&lt;BR /&gt;CPIO is fine also, but cpio I have used for years, and still hate it passionately, however it is usefull, and dump is good, for somethings. When a cpio archive has problems, start praying for God is the only one to help you when certain problems happen. &lt;BR /&gt;&lt;BR /&gt;You are much more likely to have some trouble believing this but I spliced an old 150 MB from an Archive tape drive that had snapped. I opened the cartidge tape spliced it and lost only about 40 K of EDI data that we could redownload. We continued this recovery with a product named CTAR that was from Microlite. BackupEdge is the evolution of the same product, from the same company with 15 years of refinement. &lt;BR /&gt;&lt;BR /&gt;I like BackupEdge as it creates a tar readable object. It also does incrementals, Masters,diferentials, and is cheap in price but terrific in quality.!!!&lt;BR /&gt;&lt;BR /&gt;Tim</description>
      <pubDate>Wed, 30 Jul 2003 13:24:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-with-tar/m-p/3034873#M133296</guid>
      <dc:creator>Tim Sanko</dc:creator>
      <dc:date>2003-07-30T13:24:54Z</dc:date>
    </item>
  </channel>
</rss>

