<?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: tar on LTO3 drive in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669286#M243458</link>
    <description>HI,&lt;BR /&gt;&lt;BR /&gt;Is the status same when the drive is powered on and the backup is fired?&lt;BR /&gt;&lt;BR /&gt;What does "mt -t /dev/rmt/72mn rew" say ?&lt;BR /&gt;&lt;BR /&gt;Is the drive firmware compatible/upto date?&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
    <pubDate>Thu, 10 Nov 2005 16:45:33 GMT</pubDate>
    <dc:creator>Devender Khatana</dc:creator>
    <dc:date>2005-11-10T16:45:33Z</dc:date>
    <item>
      <title>tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669284#M243456</link>
      <description>tar or dd fails with following message&lt;BR /&gt;&lt;BR /&gt;# tar cvf /dev/rmt/72m mk_sf&lt;BR /&gt;a mk_sf 3 blocks&lt;BR /&gt;Tar: end of tape&lt;BR /&gt;Tar: to continue, enter device/file name when ready or null string to quit.&lt;BR /&gt;&lt;BR /&gt;User entered a null name for next device file.&lt;BR /&gt;&lt;BR /&gt;planck# ls -la mk_sf&lt;BR /&gt;-rwxrwxrwx   1 root       sys           1162 Apr  8  2003 mk_sf&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;swlist -l fileset | grep stape&lt;BR /&gt;# PHKL_24221                            1.0            SCSI Tape (stape) cumulative &lt;BR /&gt;# PHKL_29898                            1.0            SCSI Tape (stape) cumulative &lt;BR /&gt;&lt;BR /&gt;system information.&lt;BR /&gt;HP-UX  B.11.00 U 9000/800 609359313 unlimited-user license&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ioscan output&lt;BR /&gt;tape     54  0/12/0/0.4.0             stape  CLAIMED     DEVICE       IBM     ULT3580-TD3&lt;BR /&gt;                                     /dev/rmt/c51t4d0BEST    /dev/rmt/c51t4d0BESTb   /dev/rmt/c51t4d0BESTn   /dev/rmt/c51t4d0BESTnb&lt;BR /&gt;tape     72  0/12/0/1.3.0             stape  CLAIMED     DEVICE       IBM     ULT3580-TD3&lt;BR /&gt;                                     /dev/rmt/72m            /dev/rmt/72mn           /dev/rmt/c52t3d0BEST    /dev/rmt/c52t3d0BESTn &lt;BR /&gt;                                     /dev/rmt/72mb           /dev/rmt/72mnb          /dev/rmt/c52t3d0BESTb   /dev/rmt/c52t3d0BESTnb</description>
      <pubDate>Thu, 10 Nov 2005 16:19:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669284#M243456</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2005-11-10T16:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669285#M243457</link>
      <description>Hello Sachin,&lt;BR /&gt;&lt;BR /&gt;maybe rewind the tape before writing the tar file?&lt;BR /&gt;&lt;BR /&gt;Nicely formulaed question good detail.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 10 Nov 2005 16:44:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669285#M243457</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-11-10T16:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669286#M243458</link>
      <description>HI,&lt;BR /&gt;&lt;BR /&gt;Is the status same when the drive is powered on and the backup is fired?&lt;BR /&gt;&lt;BR /&gt;What does "mt -t /dev/rmt/72mn rew" say ?&lt;BR /&gt;&lt;BR /&gt;Is the drive firmware compatible/upto date?&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
      <pubDate>Thu, 10 Nov 2005 16:45:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669286#M243458</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-11-10T16:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669287#M243459</link>
      <description>Let's do something fairly low-level with an explicit block size and go from there:&lt;BR /&gt;&lt;BR /&gt;dd if=/stand/vmunix bs=64k count=10 of=/dev/rmt/72m&lt;BR /&gt;STAT=${?}&lt;BR /&gt;echo "Status = ${STAT}"&lt;BR /&gt;&lt;BR /&gt;I assume that you have made sure that the medium is not write-protected. Dd is a good test because it is lower-level than tar; be sure to post the ${?} value as well as any stdout/stderr messages. You can choose any other input file you like as long as it is at least 640KB in size. I intentionally did not choose /dev/zero because I wanted data that would essentially infinitly compress.</description>
      <pubDate>Thu, 10 Nov 2005 16:58:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669287#M243459</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-11-10T16:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669288#M243460</link>
      <description>Hi steven &lt;BR /&gt;not so nice forgot to mention I did rewind. status, offline all works fine.&lt;BR /&gt;mt -f /dev/rmt/72m rewind&lt;BR /&gt;planck# mt -f /dev/rmt/72m status&lt;BR /&gt;Drive:  IBM ULT3580-TD3&lt;BR /&gt;Format:&lt;BR /&gt;Status: [41114018] BOT online compression immediate-report-mode &lt;BR /&gt;File:   0&lt;BR /&gt;Block:  0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;dd fails as well with different device file name&lt;BR /&gt;&lt;BR /&gt;lanck# dd if=/home/sachin/ of=/dev/rmt/72m&lt;BR /&gt;I/O error &lt;BR /&gt;1+0 records in&lt;BR /&gt;0+1 records out&lt;BR /&gt;planck#&lt;BR /&gt;planck# dd if=/home/sachin/ of=/dev/rmt/c52t3d0BEST&lt;BR /&gt;I/O error &lt;BR /&gt;1+0 records in&lt;BR /&gt;0+1 records out&lt;BR /&gt;planck# dd if=/home/sachin/mk_sf of=/dev/rmt/c52t3d0BEST&lt;BR /&gt;I/O error &lt;BR /&gt;1+0 records in&lt;BR /&gt;0+1 records out&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;someone in programming says there is permission problem. &lt;BR /&gt;&lt;BR /&gt;planck# grep 13 /usr/include/sys/errno.h&lt;BR /&gt;&lt;BR /&gt;#define EACCES  13 /* Permission denied */&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;Sachin&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Nov 2005 16:59:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669288#M243460</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2005-11-10T16:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669289#M243461</link>
      <description>Mr Clay&lt;BR /&gt;Here is output. Yes I personally check that tape is not write protected.&lt;BR /&gt;&lt;BR /&gt;dd if=/stand/vmunix bs=64k count=10 of=/dev/rmt/72m&lt;BR /&gt;I/O error &lt;BR /&gt;1+0 records in&lt;BR /&gt;0+1 records out&lt;BR /&gt;#  STAT=${?}&lt;BR /&gt;# echo "Status= ${STAT}"&lt;BR /&gt;Status= 2&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Nov 2005 17:03:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669289#M243461</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2005-11-10T17:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669290#M243462</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The I/O error indicates that either the drive or the media inside is faulty. The easiest confirmation can be done by putting this media in other similar drive and put another working media in this drive and then retry the backup operation.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
      <pubDate>Thu, 10 Nov 2005 22:28:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669290#M243462</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-11-10T22:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669291#M243463</link>
      <description>Someone is programming is wrong, you are seeing errno 5 which is an I/O error. I suspect that you have a tape drive problem or it may simple be bad or improper cabling or termination.</description>
      <pubDate>Thu, 10 Nov 2005 23:41:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669291#M243463</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-11-10T23:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669292#M243464</link>
      <description>It's look like H/W issue . Better use the new or well known working tape cartridge to check the TAPE mechanisms . &lt;BR /&gt;&lt;BR /&gt;I faced the same error with DLT8000 replacing the TAPE drive has resolved the issue&lt;BR /&gt;&lt;BR /&gt;Try to eliminate the H/W part .No need to check from S/W side</description>
      <pubDate>Fri, 11 Nov 2005 00:43:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669292#M243464</guid>
      <dc:creator>KVK</dc:creator>
      <dc:date>2005-11-11T00:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: tar on LTO3 drive</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669293#M243465</link>
      <description>Problem is fixed. Someone put LTO1 tape on that LTO3 drive. As soon as we put LTO2 tape it started working.&lt;BR /&gt;&lt;BR /&gt;Thanks &lt;BR /&gt;Sachin</description>
      <pubDate>Fri, 11 Nov 2005 09:17:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-on-lto3-drive/m-p/3669293#M243465</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2005-11-11T09:17:26Z</dc:date>
    </item>
  </channel>
</rss>

