<?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: can't read Solaris GNU tar tape on RedHat in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560659#M18085</link>
    <description>In continuation on the previous `dd` andswer: you can also use `dd` and `tar` in a pipeline:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/tapedevice | tar xvf -&lt;BR /&gt;&lt;BR /&gt;Where both dd and tar can have their added options to read the tape c.q. stream. This avoids having the tape-image on disk.</description>
    <pubDate>Thu, 09 Jun 2005 04:21:52 GMT</pubDate>
    <dc:creator>C. Beerse_1</dc:creator>
    <dc:date>2005-06-09T04:21:52Z</dc:date>
    <item>
      <title>can't read Solaris GNU tar tape on RedHat</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560655#M18081</link>
      <description>&lt;BR /&gt;A tar tape was written on Solaris (SPARC) using gnu tar and shipped to us.&lt;BR /&gt;&lt;BR /&gt;We can't read it on RedHat RHEL 3.0 on HPQ 525 (AMD 64).  We are using exactly the same tape drive to try to read it.  We've tried different blocking factors.&lt;BR /&gt;&lt;BR /&gt;Any ideas on how we can try reading this tape?  Anything that should be different on how this tape is written?  Any reason why this souldn't work (transporting tape from Solaris to RedHat on AMD)?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Doug&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Jun 2005 16:49:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560655#M18081</guid>
      <dc:creator>Doug Kratky</dc:creator>
      <dc:date>2005-06-08T16:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: can't read Solaris GNU tar tape on RedHat</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560656#M18082</link>
      <description>What commands are you using, and what errors are you seeing?&lt;BR /&gt;&lt;BR /&gt;I know that reading a tape back on Linux can sometimes be problematic (ejecting at the wrong time, not leaving the tape at the right file marker sometimes) compared to the more commercial unicies, but with a bit of fiddling (usually involving 'dd') it should be ok.&lt;BR /&gt;&lt;BR /&gt;Just as an idea, stick the tape in, rewind it, dd off the first 100kb, and see what 'file' makes of the datastream (i.e. 'dd if=/dev/st0 bs=10240 count=10 | file -').  If it doesn't say some sort of tar archive, then you've got issues.</description>
      <pubDate>Wed, 08 Jun 2005 18:50:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560656#M18082</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-06-08T18:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: can't read Solaris GNU tar tape on RedHat</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560657#M18083</link>
      <description>What is the exact error code if you run tar txv &lt;LINUX tape="" device=""&gt;&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/LINUX&gt;</description>
      <pubDate>Wed, 08 Jun 2005 20:16:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560657#M18083</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-06-08T20:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: can't read Solaris GNU tar tape on RedHat</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560658#M18084</link>
      <description>You could try to "dd" the tar archive of the tape, using "dd if=/dev/nst0 of=/&lt;PATH&gt;/restore.tar"&lt;BR /&gt;&lt;BR /&gt;This should give you a file on disk. Thats much easier to handle and check.&lt;BR /&gt;&lt;BR /&gt;First you can see if there is really something on the tape. 2nd you can check the file "file /&lt;PATH&gt;/restore.tar" if its really a tar file.&lt;BR /&gt;&lt;/PATH&gt;&lt;/PATH&gt;</description>
      <pubDate>Thu, 09 Jun 2005 00:30:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560658#M18084</guid>
      <dc:creator>Eric van Dijken</dc:creator>
      <dc:date>2005-06-09T00:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: can't read Solaris GNU tar tape on RedHat</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560659#M18085</link>
      <description>In continuation on the previous `dd` andswer: you can also use `dd` and `tar` in a pipeline:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/tapedevice | tar xvf -&lt;BR /&gt;&lt;BR /&gt;Where both dd and tar can have their added options to read the tape c.q. stream. This avoids having the tape-image on disk.</description>
      <pubDate>Thu, 09 Jun 2005 04:21:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-read-solaris-gnu-tar-tape-on-redhat/m-p/3560659#M18085</guid>
      <dc:creator>C. Beerse_1</dc:creator>
      <dc:date>2005-06-09T04:21:52Z</dc:date>
    </item>
  </channel>
</rss>

