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
08-12-2005 01:18 AM
08-12-2005 01:18 AM
Fbackup
i am taking backup by following command
# fbackup -v /I /var/tmp/back05 -i /back05 -f /dev/rmt/0mn
#####################
After finishing backup i want to restore it on /back05_new instead of /back05
How to achieve it ..
Waiting for replies..
thanx...
yogesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2005 01:24 AM
08-12-2005 01:24 AM
Re: Fbackup
Have a look at the -X (upper case) option for frecover
-X
Recover files relative to the current working directory. Normally frecover recovers files to their absolute path name.
HTH
Steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2005 01:24 AM
08-12-2005 01:24 AM
Re: Fbackup
# cd /back05_new
# frecover -X -f /dev/rmt/0mn -i /back05
and whatever other options you need
# man frecover
for more details
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2005 01:25 AM
08-12-2005 01:25 AM
Re: Fbackup
change to it
issue frecover -X (see man page)
the -X tells frecover to restore relative to the current working directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2005 01:36 AM
08-12-2005 01:36 AM
Re: Fbackup
(restore entire tape to originating directory
structure)
frecover -xovf /dev/rmt/0m
(restore entire tape to originating directory structure and overwrite any existing files)
(restore entire tape to /tmp originating directory structure will be overwritten)
cd /tmp
frecover -xXvf /dev/rmt/0m
hope this helps,