<?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: fbackup parameter in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318144#M186928</link>
    <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;This script do not spit the tape at Satudays nights:&lt;BR /&gt;&lt;BR /&gt;#!/sbin/sh&lt;BR /&gt;/usr/sbin/fbackup your_fbackup_options...&lt;BR /&gt;STATUS=$?&lt;BR /&gt;case $STATUS in&lt;BR /&gt;0) echo "Backup Ok"&lt;BR /&gt;TONIGHT=`date +%a`&lt;BR /&gt;if [ "$TONIGHT" != "Sat" ]&lt;BR /&gt;then&lt;BR /&gt;/usr/bin/mt -t /dev/rmt/&lt;DEVICE&gt; rew&lt;BR /&gt;/usr/bin/mt -t /dev/rmt/&lt;DEVICE&gt; offl&lt;BR /&gt;fi&lt;BR /&gt;;;&lt;BR /&gt;4) echo "Backup finished with Warnings"&lt;BR /&gt;;;&lt;BR /&gt;*) echo "Backup Failed"&lt;BR /&gt;;;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;Rgds.&lt;/DEVICE&gt;&lt;/DEVICE&gt;</description>
    <pubDate>Tue, 29 Jun 2004 10:17:04 GMT</pubDate>
    <dc:creator>Jose Mosquera</dc:creator>
    <dc:date>2004-06-29T10:17:04Z</dc:date>
    <item>
      <title>fbackup parameter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318139#M186923</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Is there a parameter I can use to stop the DLT drive ejecting the tape after a successful backup?  I don't mind if it is fbackup or using some other method.&lt;BR /&gt;&lt;BR /&gt;At the moment all our backups spit the tape out after the backup finishes, I would like to retain the tape in the drive on Sat nights so that the same tape can be used on Sun nights without anyone having to go in and change the tape.  I've looked in the fbackup man pages and can't find anything.&lt;BR /&gt;&lt;BR /&gt;Thanks for any help with this&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Guy</description>
      <pubDate>Tue, 29 Jun 2004 09:20:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318139#M186923</guid>
      <dc:creator>Guy Humphreys</dc:creator>
      <dc:date>2004-06-29T09:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup parameter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318140#M186924</link>
      <description>This behavior is not governed by fbackup. Look in your backup scripts for the mt command. An mt "offl" command will generally unload the tape. I should point out that even with this problem solved, you can't use fbackup for this. Fbackup uses rewind devices so that your subsequent backup would write over the previous one.&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Jun 2004 09:35:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318140#M186924</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-06-29T09:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup parameter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318141#M186925</link>
      <description>Guy,&lt;BR /&gt;&lt;BR /&gt;You stated that you "don't mind if it is fbackup or using some other method". Using 'tar' you could easily do this as you need to tell it to offline. Also, are you overwritting Saturdays data on Suday? If the tape is big enough you can specify 'no-rewind' and it will contain both Sat and Sun (e.g. tar cvf /dev/rmt/0mn).&lt;BR /&gt;&lt;BR /&gt;David</description>
      <pubDate>Tue, 29 Jun 2004 09:35:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318141#M186925</guid>
      <dc:creator>David Child_1</dc:creator>
      <dc:date>2004-06-29T09:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup parameter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318142#M186926</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/fbackup ...&lt;BR /&gt;STATUS=$?&lt;BR /&gt;&lt;BR /&gt;case $STATUS in&lt;BR /&gt;0) echo "Backup Ok"&lt;BR /&gt;   /usr/bin/mt -t /dev/rmt/&lt;DEVICE&gt; rew&lt;BR /&gt;   /usr/bin/mt -t /dev/rmt/&lt;DEVICE&gt; offl&lt;BR /&gt;;;&lt;BR /&gt;4) echo "Backup finished with Warnings"&lt;BR /&gt;;;&lt;BR /&gt;*) echo "Backup Failed"&lt;BR /&gt;;;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;Rgds.&lt;/DEVICE&gt;&lt;/DEVICE&gt;</description>
      <pubDate>Tue, 29 Jun 2004 09:37:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318142#M186926</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2004-06-29T09:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup parameter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318143#M186927</link>
      <description>Hi Guy,&lt;BR /&gt;&lt;BR /&gt;Fbackup only allows one session per tape, so there would be no benefit in leaving the tape in the drive unless you don't mind Saturday's backup getting overwritten by Sunday's backup.&lt;BR /&gt;&lt;BR /&gt;Also - I thought you still had to manually operate the handle to eject a DLT?&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Darren.</description>
      <pubDate>Tue, 29 Jun 2004 09:39:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318143#M186927</guid>
      <dc:creator>Darren Prior</dc:creator>
      <dc:date>2004-06-29T09:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup parameter</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318144#M186928</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;This script do not spit the tape at Satudays nights:&lt;BR /&gt;&lt;BR /&gt;#!/sbin/sh&lt;BR /&gt;/usr/sbin/fbackup your_fbackup_options...&lt;BR /&gt;STATUS=$?&lt;BR /&gt;case $STATUS in&lt;BR /&gt;0) echo "Backup Ok"&lt;BR /&gt;TONIGHT=`date +%a`&lt;BR /&gt;if [ "$TONIGHT" != "Sat" ]&lt;BR /&gt;then&lt;BR /&gt;/usr/bin/mt -t /dev/rmt/&lt;DEVICE&gt; rew&lt;BR /&gt;/usr/bin/mt -t /dev/rmt/&lt;DEVICE&gt; offl&lt;BR /&gt;fi&lt;BR /&gt;;;&lt;BR /&gt;4) echo "Backup finished with Warnings"&lt;BR /&gt;;;&lt;BR /&gt;*) echo "Backup Failed"&lt;BR /&gt;;;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;Rgds.&lt;/DEVICE&gt;&lt;/DEVICE&gt;</description>
      <pubDate>Tue, 29 Jun 2004 10:17:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-parameter/m-p/3318144#M186928</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2004-06-29T10:17:04Z</dc:date>
    </item>
  </channel>
</rss>

