<?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: stape driver &amp;amp; Tape Write Buffering ? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/stape-driver-amp-tape-write-buffering/m-p/2479766#M18024</link>
    <description>Hi Edward,&lt;BR /&gt;&lt;BR /&gt;I don't have a DDS4 tape drive, so unfortunately, I can't play around with this.  &lt;BR /&gt;&lt;BR /&gt;As far as patches, the following mention DDS4 support:&lt;BR /&gt;PHKL_22856  SCSI Tape (stape) cumulative&lt;BR /&gt;PHKL_22941  SCSI IO Subsystem Cumulative Patch&lt;BR /&gt;&lt;BR /&gt;You may want to look into these patches, and their dependencies.&lt;BR /&gt;&lt;BR /&gt;Also, with regards to the fbackup behavior you were describing, the last time I checked, fbackup does not support DDS4.  It seems to me, however, you can use the tape drive with fbackup as long as you:&lt;BR /&gt;&lt;BR /&gt;1) have the patches I mentioned above, as well as the latest fbackup patch, PHCO_19732 &lt;BR /&gt;2) and use 120M tapes instead of 125M.  &lt;BR /&gt;&lt;BR /&gt;Granted, this puts the drive into DDS3 mode, but it's better than using it as a paper weight :-)&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Bruce Laughlin&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 10 Jan 2001 19:43:13 GMT</pubDate>
    <dc:creator>Bruce Laughlin</dc:creator>
    <dc:date>2001-01-10T19:43:13Z</dc:date>
    <item>
      <title>stape driver &amp; Tape Write Buffering ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stape-driver-amp-tape-write-buffering/m-p/2479764#M18022</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have been having problems with cpio trying to backup to a Sony SDT-11000 (DDS4) from HP-UX 11. &lt;BR /&gt;&lt;BR /&gt;This is a new HP Machine and DAT drive and I am using new tapes (although I have tried used ones), the problem is that I can write a small amount of data to the tape, like this:&lt;BR /&gt;&lt;BR /&gt;find /home/eddiew -print |cpio -ocv &amp;gt;/dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;and this works without problem. However if I try to backup:&lt;BR /&gt;&lt;BR /&gt;find /home /etc -print | cpio -ocv &amp;gt;/dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;then the backup fails with:&lt;BR /&gt;&lt;BR /&gt;write failed: I/O error&lt;BR /&gt;Unexpected write error (errno: 5).&lt;BR /&gt;Archive aborted.&lt;BR /&gt;&lt;BR /&gt;As I can write small amounts of data to the tape I think that this proves the tape/hardware are OK and that this problem is something to do with buffering - can anyone suggest any solutions and or patches I may need to install.&lt;BR /&gt;&lt;BR /&gt;Many thanks in advance, Eddie</description>
      <pubDate>Fri, 05 Jan 2001 11:37:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stape-driver-amp-tape-write-buffering/m-p/2479764#M18022</guid>
      <dc:creator>Edward Wynn</dc:creator>
      <dc:date>2001-01-05T11:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: stape driver &amp; Tape Write Buffering ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stape-driver-amp-tape-write-buffering/m-p/2479765#M18023</link>
      <description>Hi there.&lt;BR /&gt;Perhaps you can use this little script: &lt;BR /&gt;&lt;BR /&gt;#!/sbin/sh&lt;BR /&gt;# ============================================================================&lt;BR /&gt;# This script will cpio out all database files to the device&lt;BR /&gt;# given as Parameter 1&lt;BR /&gt;# ============================================================================&lt;BR /&gt;#&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     /                     /u001/var             /u004/alex/copy       /u010/opt             -xdev  -fsonly hfs -depth -print | cpio -ocBv &amp;gt; /dev/rmt/1m   2&amp;gt;&amp;gt; ${LOG1} &amp;amp;&lt;BR /&gt;   first_cpio=$!; export first_cpio&lt;BR /&gt;&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;Rgds&lt;BR /&gt;Alexander M. Ermes&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Jan 2001 11:41:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stape-driver-amp-tape-write-buffering/m-p/2479765#M18023</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2001-01-05T11:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: stape driver &amp; Tape Write Buffering ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stape-driver-amp-tape-write-buffering/m-p/2479766#M18024</link>
      <description>Hi Edward,&lt;BR /&gt;&lt;BR /&gt;I don't have a DDS4 tape drive, so unfortunately, I can't play around with this.  &lt;BR /&gt;&lt;BR /&gt;As far as patches, the following mention DDS4 support:&lt;BR /&gt;PHKL_22856  SCSI Tape (stape) cumulative&lt;BR /&gt;PHKL_22941  SCSI IO Subsystem Cumulative Patch&lt;BR /&gt;&lt;BR /&gt;You may want to look into these patches, and their dependencies.&lt;BR /&gt;&lt;BR /&gt;Also, with regards to the fbackup behavior you were describing, the last time I checked, fbackup does not support DDS4.  It seems to me, however, you can use the tape drive with fbackup as long as you:&lt;BR /&gt;&lt;BR /&gt;1) have the patches I mentioned above, as well as the latest fbackup patch, PHCO_19732 &lt;BR /&gt;2) and use 120M tapes instead of 125M.  &lt;BR /&gt;&lt;BR /&gt;Granted, this puts the drive into DDS3 mode, but it's better than using it as a paper weight :-)&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Bruce Laughlin&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Jan 2001 19:43:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stape-driver-amp-tape-write-buffering/m-p/2479766#M18024</guid>
      <dc:creator>Bruce Laughlin</dc:creator>
      <dc:date>2001-01-10T19:43:13Z</dc:date>
    </item>
  </channel>
</rss>

