<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Raid Recovery Tips &#187; tape drive</title>
	<atom:link href="http://www.raidrecoverytips.org/tag/tape-drive/feed" rel="self" type="application/rss+xml" />
	<link>http://www.raidrecoverytips.org</link>
	<description>Tips about Raid 0, Raid 1, Raid 5, Raid 6, Raid Software, Raid Controller, Linux Raid...</description>
	<lastBuildDate>Tue, 01 Dec 2009 01:25:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tar -xvf on AIX 4.3.3.0</title>
		<link>http://www.raidrecoverytips.org/tar-xvf-on-aix-4-3-3-0.html</link>
		<comments>http://www.raidrecoverytips.org/tar-xvf-on-aix-4-3-3-0.html#comments</comments>
		<pubDate>Fri, 19 Jun 2009 09:21:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Raid]]></category>
		<category><![CDATA[tape drive]]></category>
		<category><![CDATA[tape recovery]]></category>

		<guid isPermaLink="false">http://www.raidrecoverytips.org/tar-xvf-on-aix-4-3-3-0.html</guid>
		<description><![CDATA[<p><a href="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery1.jpg"><img title="tape recovery" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 0px 10px; border-right-width: 0px" height="92" alt="tape recovery" src="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery_thumb1.jpg" width="115" align="right" border="0" /></a> I am on a old AIX 4.3.3.0 trying to restore a backup on tape.     <br />The device /dev/rmt1 exist end I succeed to execute the following commend with correct result:     <br />tar -tvf /dev/rmt1     <br />I obtained the contain of the tape backup. It take approx. 2 hours.     <br />But when I try to make any restore, nothing happened, no message, nothing.     <br />Ex. of commmand I&#8217;ve tried:     <br />tar -xvf /dev/rmt1 ./oradata01/DBNAME/dbf/prodtai.dbf     <br />tar -xvf /dev/rmt1 &#8216;./oradata01/DBNAME/dbf/prodtai.dbf&#8217;     <br />tar -xvf /dev/rmt1     <br />tar &#8211; xvvf ./oradata01/DBNAME/dbf/prodtai.dbf     <br />No way.. and I do not know if tar generate some log somewhere &#8230;     <br />Any ideas Welcome!</p>
<blockquote><p>Not familiar with the AIX differences&#8230;</p></blockquote>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery1.jpg"><img title="tape recovery" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 0px 10px; border-right-width: 0px" height="92" alt="tape recovery" src="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery_thumb1.jpg" width="115" align="right" border="0" /></a> I am on a old AIX 4.3.3.0 trying to restore a backup on tape.     <br />The device /dev/rmt1 exist end I succeed to execute the following commend with correct result:     <br />tar -tvf /dev/rmt1     <br />I obtained the contain of the tape backup. It take approx. 2 hours.     <br />But when I try to make any restore, nothing happened, no message, nothing.     <br />Ex. of commmand I&#8217;ve tried:     <br />tar -xvf /dev/rmt1 ./oradata01/DBNAME/dbf/prodtai.dbf     <br />tar -xvf /dev/rmt1 &#8216;./oradata01/DBNAME/dbf/prodtai.dbf&#8217;     <br />tar -xvf /dev/rmt1     <br />tar &#8211; xvvf ./oradata01/DBNAME/dbf/prodtai.dbf     <br />No way.. and I do not know if tar generate some log somewhere &#8230;     <br />Any ideas Welcome!</p>
<blockquote><p>Not familiar with the AIX differences but on SCO you don&#8217;t get any messages if what you attempt to extract doesn&#8217;t match what is on the tape. It only shows successful extracts.      <br />You could make a listing of what is on the tape so you can be sure you are extracting what is stored on it. Try it as tar -tvf /dev/rmt1 &gt; /tmp/tapefiles.       <br />What happens with tar -tvf /dev/mt1 ?       <br />You generally can abort the long process by popping the tape when you get the info you need.</p>
</blockquote>
<blockquote><p>Hi Sammy! First of all thank you for your reply!      <br />That&#8217;s the &quot;funny&quot; think, I succeed to make a listing of what is on the tape using the cammand: tar -tvf /dev/rmt1       <br />But when I try to restore .. nothing.</p>
</blockquote>
<blockquote><p>I had suggested the dump to /tmp so you would have a total listing stored rather than having to list it via tar each time you wanted to know the contents.      <br />tar is persnickity (best word I know to describe it) in how it requires input commands.       <br />To get familiar with it I suggest (if you have a blank tape) that you do something like tar -cvf /dev/rmt1 /etc so you can see how it looks and works under conditions you know.       <br />The ./ in front of the files is significant, just don&#8217;t remember the causes and how it relates to creating and extracting. You may have help in manual pages, assuming you have them. Try &quot;man tar&quot; and see if something comes up. Everybody ought to know how tar works, but after probably 10 years of using a &quot;super tar&quot; I&#8217;ve forgotten most of the details.</p>
</blockquote>
<blockquote><p>Thank you for those interesting ways, Sammy!      <br />I will give a try with a new tape and re-read the f.. manual</p>
</blockquote>
<blockquote><p>And to get help from people who are familiar with the OS and the specific commands for the version you are using might I suggest that you post in one of the unix-aix forum.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.raidrecoverytips.org/tar-xvf-on-aix-4-3-3-0.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OLD DAT 4mm Tape recovery</title>
		<link>http://www.raidrecoverytips.org/old-dat-4mm-tape-recovery.html</link>
		<comments>http://www.raidrecoverytips.org/old-dat-4mm-tape-recovery.html#comments</comments>
		<pubDate>Fri, 19 Jun 2009 08:47:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Raid Recovery]]></category>
		<category><![CDATA[dat tape]]></category>
		<category><![CDATA[tape drive]]></category>
		<category><![CDATA[tape recovery]]></category>

		<guid isPermaLink="false">http://www.raidrecoverytips.org/old-dat-4mm-tape-recovery.html</guid>
		<description><![CDATA[<p><a href="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery.jpg"><img title="tape recovery" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="92" alt="tape recovery" src="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery_thumb.jpg" width="115" align="right" border="0" /></a> I have a bunch of 4mm DAT tapes that contain backups from some legacy system, i have set up a server and an old tape drive to read the tapes, problem i have now is i have no idea what they were written in, i have Veritas on a server (i thought a good choice) but no joy there. Is there any software that can determin what program was used to create a backup on a DAT tape? , yours hopin</p>
<blockquote><p>can you see any of the file backup extensions; not the individual files?</p>
</blockquote>
<blockquote><p>no cant see anything, but i know there&#8230;</p></blockquote>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery.jpg"><img title="tape recovery" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="92" alt="tape recovery" src="http://www.raidrecoverytips.org/wp-content/uploads/2009/06/taperecovery_thumb.jpg" width="115" align="right" border="0" /></a> I have a bunch of 4mm DAT tapes that contain backups from some legacy system, i have set up a server and an old tape drive to read the tapes, problem i have now is i have no idea what they were written in, i have Veritas on a server (i thought a good choice) but no joy there. Is there any software that can determin what program was used to create a backup on a DAT tape? , yours hopin</p>
<blockquote><p>can you see any of the file backup extensions; not the individual files?</p>
</blockquote>
<blockquote><p>no cant see anything, but i know there is data on the tapes, veritas just tells me each one is bad media, but i guess its coz it cant read them, as they will have been backed up with some other software i suppose</p>
</blockquote>
<blockquote><p>try this:      <br /><a href="http://www.salvagedatarecovery.com/tape-data-recovery/">Salvagedata Tape data recovery</a></p>
</blockquote>
<blockquote><p>will give that a look dude, thankyou</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.raidrecoverytips.org/old-dat-4mm-tape-recovery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
