- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tape backup software
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
03-06-2001 06:11 AM
03-06-2001 06:11 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:15 AM
03-06-2001 06:15 AM
SolutionCheck out http://openview.hp.com and have a look at Omniback 11 v3.5
MND
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:17 AM
03-06-2001 06:17 AM
Re: tape backup software
If you use fbackup / frecover on the right way,
there are log files and you can exclude files and dirs. The easist way is to use SAM.
Marcel
fbackup is a good tool
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:21 AM
03-06-2001 06:21 AM
Re: tape backup software
For other solutions look at:
http://www.docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90701/B2355-90701_top.html&con=/hpux/onlinedocs/B2355-90701/00/00/51-con.html&toc=/hpux/onlinedocs/B2355-90701/00/00/51-toc.html&searchterms=fbackup&queryid=20010306-062121
Marcel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:21 AM
03-06-2001 06:21 AM
Re: tape backup software
Also fbackup/frecover is free ;)
MND
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:56 AM
03-06-2001 06:56 AM
Re: tape backup software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 07:01 AM
03-06-2001 07:01 AM
Re: tape backup software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 07:30 AM
03-06-2001 07:30 AM
Re: tape backup software
'fbackup' can be configured to do incremental or full backups. A simple 'graph' file containing entries for including and/or excluding filesystems, directories and/or files constitutes the selection process for the backup.
Thus, graph files for backup or recovery have simple entries like:
i /var
e /var/tmp
which would request a backup on the /var directory, but exclude the /var/tmp subdirectory.
fbackup is designed to work while files are inuse. It attempts to insure a good copy of a file is placed on tape by comparing the timestamp of the file at the end of the copy to the timestamp of the file seen at the beginning of the copy. If these do not match, fbackup marks the file as "bad" and retries the copy. The retry (maxretries) default is five (5).
One great benefit to fbackup is 'frecover' for recovering something that was backed up. frecover uses graph and configuration files just like fbackup. frecover can produce an index (directory) and a volume header listing of the fbackup tape. Due to the way fbackup writes tapes, frecover can rapidly search the tape to find files in the middle and reload them.
If you run your fbackup with the (v)erbose option (-v) and redirect the output to a log file, you will be able to create log files and to search for warnings and errors. Thus, something like:
fbackup... > /tmp/fbackup.log 2>&1
The default configuration file for fbackup gives rather poor performance. I would start with something like this:
blocksperrecord 128
records 32
checkpointfreq 256
readerprocesses 2
maxretries 5
retrylimit 50000000
maxvoluses 100
filesperfsm 200
Do a man on 'fbackup' and 'frecover' for more information overview. There are also additional documents on tuning in the Knowledge Base.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 07:37 AM
03-06-2001 07:37 AM
Re: tape backup software
the device /dev/rmt/0m. Then with each line I add | tee -a /usr/tmp/backup. That will keep a record of the process.
TO TAPE
find /usr/tmp/rptlog -print|cpio -ocdumvB > /dev/rmt/0m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 11:29 AM
03-06-2001 11:29 AM