<?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: Info about back-up in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615263#M37396</link>
    <description>If you elect to use cpio, the command would like somthing like this:&lt;BR /&gt;&lt;BR /&gt; find /home | cpio -ocuvB &amp;gt; /dev/rmt/tapedev&lt;BR /&gt;&lt;BR /&gt;That would backup everything under /home.&lt;BR /&gt;&lt;BR /&gt;Restoring:&lt;BR /&gt;&lt;BR /&gt; cpio -iBdcvm "filename" &amp;lt; /dev/rmt/tapedev&lt;BR /&gt;&lt;BR /&gt;Listing tape contents:&lt;BR /&gt;&lt;BR /&gt; cpio -ictBv &amp;lt; /dev/rmt/tapedev&lt;BR /&gt;&lt;BR /&gt;Do a 'man' on cpio for the switches that would best fit what you are doing.&lt;BR /&gt;</description>
    <pubDate>Fri, 16 Nov 2001 14:25:00 GMT</pubDate>
    <dc:creator>Fred Martin_1</dc:creator>
    <dc:date>2001-11-16T14:25:00Z</dc:date>
    <item>
      <title>Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615253#M37386</link>
      <description>Hi,&lt;BR /&gt;i wuold like to know which is the best way to back-up /home/try (and all the dir under it) on a tape?&lt;BR /&gt;Whit fbackup, inclueded into the file graph_file all the dir or with tar  (tar cvf try.tar /home/try) .&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 16 Nov 2001 09:47:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615253#M37386</guid>
      <dc:creator>Dario_4</dc:creator>
      <dc:date>2001-11-16T09:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615254#M37387</link>
      <description>Depends on your needs. Fbackup is faster, but is locked to HP-UX, while tar is standard across all unix.&lt;BR /&gt;&lt;BR /&gt;If you only use HP-UX, then I'd go wth fbackup.&lt;BR /&gt;&lt;BR /&gt;Party on Dude!&lt;BR /&gt;James</description>
      <pubDate>Fri, 16 Nov 2001 09:51:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615254#M37387</guid>
      <dc:creator>James Beamish-White</dc:creator>
      <dc:date>2001-11-16T09:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615255#M37388</link>
      <description>Ok, &lt;BR /&gt;you are right.&lt;BR /&gt;But for back-up all direcory under /home/try on tape?&lt;BR /&gt;&lt;BR /&gt;tar cvf try.tar /home/try &lt;BR /&gt;&lt;BR /&gt;Is sufficent?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 16 Nov 2001 09:56:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615255#M37388</guid>
      <dc:creator>Dario_4</dc:creator>
      <dc:date>2001-11-16T09:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615256#M37389</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;again "It depends"&lt;BR /&gt;fbackup is the most flexible tool, but only supported on HP-UX.&lt;BR /&gt;tar (and cpio) is the most compatible one, can be read on other unixes (even SCO, Linux, ...), but is less flexible than fbackup in restoring specific files to specific directories.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;Thierry.</description>
      <pubDate>Fri, 16 Nov 2001 09:56:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615256#M37389</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2001-11-16T09:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615257#M37390</link>
      <description>&amp;lt;&amp;lt; tar cvf try.tar /home/try &lt;BR /&gt;Is sufficent? &amp;gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;this would backup /home/try into a tar file try.tar in the directory from where you run the command. If you want it to go to the tape drive, don't use the 'f' flag.&lt;BR /&gt;"tar cv /home/tar" will send it to the default tape drive. Or use "tar cvf /dev/rmt/0m /home/tar" to send it to teh device /dev/rmt/0m.&lt;BR /&gt;You dont need to use a tar file name if you're writing to tape.&lt;BR /&gt;&lt;BR /&gt;Also, I'd suggest you specify the relative path instead of an absolute path.&lt;BR /&gt;If your tar was created with "tar cv /home/tar", then when you untar it, it will overwrite or create the /home/tar directory.&lt;BR /&gt;Instead, do a "cd /home/tar ; tar cvf ./". You can untar this in any convenient directory when you need to.</description>
      <pubDate>Fri, 16 Nov 2001 10:09:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615257#M37390</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2001-11-16T10:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615258#M37391</link>
      <description>oops..read "home/tar" as "home/try" in my last posting.&lt;BR /&gt;&lt;BR /&gt;sed 's/home\/tar/home\/try/' last_post &amp;gt; new_post&lt;BR /&gt;&lt;BR /&gt;:-)&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 10:12:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615258#M37391</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2001-11-16T10:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615259#M37392</link>
      <description>Eheh, &lt;BR /&gt;no problem Deepack. You are a master.&lt;BR /&gt;Do you suggest:&lt;BR /&gt;&lt;BR /&gt;cd /home/try ; tar cvf ./  ??&lt;BR /&gt;&lt;BR /&gt;This command, back up /home/tar and all the dir under /home/try to tape?&lt;BR /&gt;&lt;BR /&gt;Thank you very much&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 10:24:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615259#M37392</guid>
      <dc:creator>Dario_4</dc:creator>
      <dc:date>2001-11-16T10:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615260#M37393</link>
      <description>Uh-oh..bad day.&lt;BR /&gt;It should be &lt;BR /&gt;"cd /home/try ; tar cv ./" &lt;BR /&gt;Or, if you want to specify the device name (say, if you have more than one tape drive and dont want to overwrite somebody else's tape)&lt;BR /&gt;"cd /home/try ; tar cvf &lt;DEVICE name=""&gt; ./" &lt;BR /&gt;Your tape drive could be /dev/rmt/0m or /dev/rmt/1m or whatever.&lt;BR /&gt;&lt;BR /&gt;Hmmm..I didnt see that profile of yours before :-)&lt;/DEVICE&gt;</description>
      <pubDate>Fri, 16 Nov 2001 10:30:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615260#M37393</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2001-11-16T10:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615261#M37394</link>
      <description>&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x316efd3f91d3d5118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x316efd3f91d3d5118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;- Playing Shylock and Lovin' It -</description>
      <pubDate>Fri, 16 Nov 2001 10:47:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615261#M37394</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2001-11-16T10:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615262#M37395</link>
      <description>Hi there.&lt;BR /&gt;Nice discussion, guys. What about the limit of tar or cpio with files larger than 2 GB ?&lt;BR /&gt;If you stay with HP machines, use fbackup in command line mode for these files.&lt;BR /&gt;For other systems think about OmniBack II.&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes</description>
      <pubDate>Fri, 16 Nov 2001 11:02:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615262#M37395</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2001-11-16T11:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615263#M37396</link>
      <description>If you elect to use cpio, the command would like somthing like this:&lt;BR /&gt;&lt;BR /&gt; find /home | cpio -ocuvB &amp;gt; /dev/rmt/tapedev&lt;BR /&gt;&lt;BR /&gt;That would backup everything under /home.&lt;BR /&gt;&lt;BR /&gt;Restoring:&lt;BR /&gt;&lt;BR /&gt; cpio -iBdcvm "filename" &amp;lt; /dev/rmt/tapedev&lt;BR /&gt;&lt;BR /&gt;Listing tape contents:&lt;BR /&gt;&lt;BR /&gt; cpio -ictBv &amp;lt; /dev/rmt/tapedev&lt;BR /&gt;&lt;BR /&gt;Do a 'man' on cpio for the switches that would best fit what you are doing.&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 14:25:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615263#M37396</guid>
      <dc:creator>Fred Martin_1</dc:creator>
      <dc:date>2001-11-16T14:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Info about back-up</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615264#M37397</link>
      <description>Hi Fabrizio,&lt;BR /&gt;&lt;BR /&gt;Maybe this can help you,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90742/00/00/51-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90742/00/00/51-toc.html&amp;amp;searchterms=backup&amp;amp;queryid=20011116-064758" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90742/00/00/51-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90742/00/00/51-toc.html&amp;amp;searchterms=backup&amp;amp;queryid=20011116-064758&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here are some links on backup commands.&lt;BR /&gt;&lt;BR /&gt;Tar&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B2355-90680&amp;amp;service=hpux&amp;amp;path=../B2355-90680/00/00/53&amp;amp;title=HP-UX%20Reference%20Volume%201%3A%20Section%201" target="_blank"&gt;http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B2355-90680&amp;amp;service=hpux&amp;amp;path=../B2355-90680/00/00/53&amp;amp;title=HP-UX%20Reference%20Volume%201%3A%20Section%201&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cpio&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B2355-90680&amp;amp;service=hpux&amp;amp;path=../B2355-90680/00/00/53&amp;amp;title=HP-UX%20Reference%20Volume%201%3A%20Section%201" target="_blank"&gt;http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B2355-90680&amp;amp;service=hpux&amp;amp;path=../B2355-90680/00/00/53&amp;amp;title=HP-UX%20Reference%20Volume%201%3A%20Section%201&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Fbackup&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90681/B2355-90681_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90681/00/00/78-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90681/00/00/78-toc.html&amp;amp;searchterms=cpio&amp;amp;queryid=20011116-064922" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90681/B2355-90681_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90681/00/00/78-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90681/00/00/78-toc.html&amp;amp;searchterms=cpio&amp;amp;queryid=20011116-064922&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2001 14:48:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-about-back-up/m-p/2615264#M37397</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-11-16T14:48:27Z</dc:date>
    </item>
  </channel>
</rss>

