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
05-21-2007 04:30 AM
05-21-2007 04:30 AM
I would like to view only the contents of a backed up tape using fbackup. I do not want to restore the filesystems...please help me to find out what command do i need to give to check the contents of the tape.
Thanks,
Jim
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 04:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 04:35 AM
05-21-2007 04:35 AM
Re: frecover
From the man page for frecover
issue the command "man frecover" for the full info
-N (no recovery) Prevent frecover from actually recovering
any files onto disk, but read the backup as if it was, in
fact, recovering the data from the backup, producing the
same output that it would on a normal recovery. This
option is useful for verifying backup media contents in
terms of validity (block checksum errors are reported),
and contents (a listing of files can be produced by using
the -N and -v options together). Note that the listing of
files produced with the -N and -v options requires the
reading of the entire backup, but is therefore a more
accurate reflection of the backup's contents than the
index stored at the beginning of the backup (which was
created at the start of the backup session, and is not
changed during the course of the backup).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 04:40 AM
05-21-2007 04:40 AM
Re: frecover
How do i handle if i use
frecover -N -v -f /dev/rmt/xxx do i need to rediect the output to a file....lets say /tmp/aaa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 04:45 AM
05-21-2007 04:45 AM
Re: frecover
How do i handle if i use
frecover -N -v -f /dev/rmt/xxx do i need to rediect the output to a file....lets say /tmp/aaa
The command you listed should display its results to screen. you can redirect the output to file with ">"
frecover -N -v -f /dev/rmt/xxx > /tmp/aaa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 05:01 AM
05-21-2007 05:01 AM
Re: frecover
frecover -N -v -f /dev/rmt/om > /tmp/aaa its giving me an error which reads like i need to give some other options that i must specify like V, I, x, r or R
Please advice
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 05:04 AM
05-21-2007 05:04 AM
Re: frecover
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 05:08 AM
05-21-2007 05:08 AM
Re: frecover
try
frecover-x -vN -f /dev/rmt/om > /tmp/aaa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 05:10 AM
05-21-2007 05:10 AM
Re: frecover
# frecover -N -v -f /dev/rmt/om > /tmp/aaa
frecover(3208): must specify at least one of V, I, x, r, or R
frecover -r [-hosvymFNOX] [-c config] [-f device] [-S skip] [-E extarg]
frecover -R path [-f device]
frecover -x [-hosvymFNOX] [-c config] [-e path] [-f device]
[-g graph] [-i path] [-S skip] [-E extarg]
frecover [-I | -V] path [-vy] [-f device] [-c config]
-{r,x} - full/partial recovery
-{I,V} - write index/volume-header to path
-{F,X} - flat/relative recovery
-{i,e} - specify a path to include/exclude
-{g,c} - specify a graph/configuration file
-{N,h} - No files recovered-Only verify/graph information
-R - continue an interrupted session
-f - specify an input device
-o - overwrite existing files
-v - verbose mode
-y - answer yes to all questions
-S - specify a file for skipped blocks
-s - sparse file recovery
-O - set ownership of files to the user running the recovery
-m - Print marker information (checksums, filemarks, setmarks)
-E - specify extent attributes handling: warn, force, or ignore
Thanks,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2007 05:14 AM
05-21-2007 05:14 AM
Re: frecover
> if i give the command
frecover -N -v -f /dev/rmt/om
...would yield:
...must specify at least one of V, I, x, r, or R
Hence, do that: add either -I /tmp/findex' or simply '-N'. Also, fix the 'om' to be '0m' in your tape device specification!
...JRF...