- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Frecover
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-22-2001 05:54 AM
05-22-2001 05:54 AM
Frecover
I backed up /share/stage/ns-home/doc2 using fbackup, the command i used was
#/etc/fbackup -0v -g /tmp/graph -f /data/stage.tar
In the graph file i gave:
i /share/stage/ns-home/doc2
My question is how to extract files from the fbackup to different directory, for example to /share/test/ns-home/doc2. That is i want to extract from backup, all the files from /share/stage/ns-home/doc2 to /share/test/ns-home/doc2.
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2001 06:05 AM
05-22-2001 06:05 AM
Re: Frecover
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2001 06:07 AM
05-22-2001 06:07 AM
Re: Frecover
one file or directory is easy:
cd /share/test/ns-home/doc2
frecover -xvF -f/dev/rmt/0m -i /share/stage/ns-home/doc2/yourfile
--> -F put files in current directory
a whole subtree is more work:
mkdir /tmp/share
mkdir /tmp/share/stage
mkdir /tmp/share/stage/ns-home
ln -s /share/stage/ns-home/doc2 /tmp/share/stage/ns-home/doc2
cd /tmp
frecover -xvX -f/dev/rmt/0m -i /share/stage/ns-home/doc2
--> -X restore files relative to the current directory; fake the path, and link the bottom directory to your destination
good luck,
(was typed without checking, so be carefull, but the idea should be correct at least)
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2001 06:38 AM
05-22-2001 06:38 AM
Re: Frecover
Vincenzo, That is a pretty stupid answer for someone who is looking for help. If you think the question is silly or if you don't have the time to post a response then don't answer. And while I am at it, do me a favor? Don't answer any of my questions anymore with dead links, I have better things to do than hit dead ends in cyberspace.
Cheers,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2001 07:10 AM
05-22-2001 07:10 AM
Re: Frecover
You dont need to tell me to look into man pages for frecover. I know how to look into man pages and i know what i am doing.
Thanks for your advice.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2001 09:43 AM
05-22-2001 09:43 AM
Re: Frecover
Mark