- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- frecover Format and date
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
01-23-2006 06:52 PM
01-23-2006 06:52 PM
may some one help me , i want to know the tape format,date, for the last fbackup done with this tape
thanx alot
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2006 07:05 PM
01-23-2006 07:05 PM
Re: frecover Format and date
Is "man recover" not enough to see the contents of the tape?
format is abviously fbackup only.
date and last backup done can be seen with the timestamp of some files with keep on changing.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2006 07:09 PM
01-23-2006 07:09 PM
Re: frecover Format and date
You can get these information by looking into the man pages of the following,
# man frecover
# man fbackup
# man restore
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2006 07:29 PM
01-23-2006 07:29 PM
Re: frecover Format and date
You can use the command below (eg. tape device file name is /dev/rmt/0m) :
* for list of what is really on the tape :
# frecover -Nrosv -f /dev/rmt/0m
* for show volume headers on the tape :
# frecover -V /tmp/volume_headers -f /dev/rmt/0m
* for log what is backed up, along with any errors that occur
# fbackup -vf /dev/rmt/0m 2>&1 |tee /tmp/backup.log
Hope this information can help you.
Cheers,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2006 09:07 PM
01-23-2006 09:07 PM
SolutionFBACKUP/FRECOVER
Things to remember about fbackup:
* fbackup MUST rewind the tape before beginning the backup and after
completing.
* a tape created with fbackup is only recoverable with frecover.
* a file listed in the index file (from option -rvNf) is not guaranteed
to be on the tape; this simply means that fbackup intended to back the
file up when it began the backup session.
Command Description
fbackup -vf /dev/rmt/0m -i / full system backup
fbackup -vf /dev/rmt/0m -i specifically include file/directory
/etc/hosts preceded by -i
fbackup -vf /dev/rmt/0m -i specifically include multiple
/etc/hosts -i /usr files/directories preceded by -i
fbackup -vf /dev/rmt/0m -e specifically exclude file/directory
/etc/hosts preceded by -e
fbackup -vf /dev/rmt/0m -g
graph_file_name backup from a graph file
frecover -xvf /dev/rmt/0m restore entire tape to originating
directory structure
restore entire tape to originating
frecover -xovf /dev/rmt/0m directory structure and overwrite any
existing files
cd /tmp restore entire tape to /tmp
frecover -xXvf /dev/rmt/0m (originating directory structure will
not be overwritten)
frecover -vf /dev/rmt/0m -I verify backup and read the index file
/tmp/index from the tape into a file called
/tmp/index
fbackup -vf /dev/rmt/0m 2>&1 log what is backed up, along with any
|tee /tmp/backup.log errors that occur
frecover -rNv -f /dev/rmt/0m 2>
/tmp/listing list of what is really on the tape
frecover -V /tmp/volume_headers
-f /dev/rmt/0m show volume headers on the tape