- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: List of files from the tape
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
07-29-2002 07:52 AM
07-29-2002 07:52 AM
I need to learn how to use fbackup or restore. My tapes are old about 3 years ago. So how can I look the list from the tapes? Once I found one file from tape then how can I get the file from tape? Someone used fbackup with full backup.
I apprecaite your help.
-Tom
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 08:00 AM
07-29-2002 08:00 AM
Re: List of files from the tape
HTH
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 08:05 AM
07-29-2002 08:05 AM
Solution# frecover -I /tmp/index -f /dev/rmt/0m
==> The file /tmp/index will contain the list of files. From that file take note of the EXACT path of the file/dir that you want to retrieve.
Some examples of retrival ..
To retrieve relative .. (file /opt/apps/filea)
# cd /tmp
# frecover -f /dev/rmt/0m -v -x -F -i /opt/apps/filea
==> That will extract "filea" and place it in /tmp.
To retrieve absolute ..
# cd /
# frecover -f /dev/rmt/0m -v -x -X -i /opt/apps/filea
==> That will extract "filea" and create the directory /opt/apps as well. If you want to everwrite existing "filea" add option "-o" to the command.
Make sure you check the man pages for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 08:45 AM
07-29-2002 08:45 AM
Re: List of files from the tape
You can use SAM in order to do it the restore, using the on-line backup/restore option.
Regards,
Justo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 10:26 AM
07-29-2002 10:26 AM
Re: List of files from the tape
frecover -V - -f /dev/rmt/0m
(where /dev/rmt/0m is whatever tape device you are using) Note that the header will not only tell you the date but volume number for multi-tape backups and the number of times the tape was used for fbackup volumes.
frecover -I - -f /dev/rmt/0m | more
will show the entire index of all files. Due to the length, you should redirect the output into a file as in:
frecover -I /var/tmp/fb.index -f /dev/rmt/0m
Note that fbackup always places a complete index at the beginning of the tape, so these tasks complete very quickly (compared to tar or cpio), and each volume will have the same information with one additional bit: the current tape volume will know which files were saved on the preceeding volume and the last tape knows where every file is located by volume number.
Bill Hassell, sysadmin