- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fbackup parameter
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 02:20 AM
06-29-2004 02:20 AM
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.
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.
Thanks for any help with this
Cheers
Guy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 02:35 AM
06-29-2004 02:35 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 02:35 AM
06-29-2004 02:35 AM
Re: fbackup parameter
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).
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 02:37 AM
06-29-2004 02:37 AM
Re: fbackup parameter
Try this:
/usr/sbin/fbackup ...
STATUS=$?
case $STATUS in
0) echo "Backup Ok"
/usr/bin/mt -t /dev/rmt/
/usr/bin/mt -t /dev/rmt/
;;
4) echo "Backup finished with Warnings"
;;
*) echo "Backup Failed"
;;
esac
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 02:39 AM
06-29-2004 02:39 AM
Re: fbackup parameter
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.
Also - I thought you still had to manually operate the handle to eject a DLT?
regards,
Darren.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 03:17 AM
06-29-2004 03:17 AM
Re: fbackup parameter
This script do not spit the tape at Satudays nights:
#!/sbin/sh
/usr/sbin/fbackup your_fbackup_options...
STATUS=$?
case $STATUS in
0) echo "Backup Ok"
TONIGHT=`date +%a`
if [ "$TONIGHT" != "Sat" ]
then
/usr/bin/mt -t /dev/rmt/
/usr/bin/mt -t /dev/rmt/
fi
;;
4) echo "Backup finished with Warnings"
;;
*) echo "Backup Failed"
;;
esac
Rgds.