- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup redirection
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-15-2004 11:47 PM
01-15-2004 11:47 PM
fbackup redirection
is it possible to redirect the output form frecover ?
For example:
fbackup -f /dev/rmt/0m -i /home/user1 -I index.home
this backup i like to redirect to
/tmp/usr1
frecover -f /dev/rmt/0m -i /home/usr1 -xv that can but redirection direct from the tape ????
thank you in advance
Idriz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 12:12 AM
01-16-2004 12:12 AM
Re: fbackup redirection
You could try the -X option, check man frecover:
-X Recover files relative to the current working directory.
Normally frecover recovers files to their absolute path
name.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 12:15 AM
01-16-2004 12:15 AM
Re: fbackup redirection
Are you asking to redirect the output that you would see from fbackup on the screen into a file? If so, then just add 2> /tmp/usr to end of your command line. The 2 is required as fbackup sends the info to stderr rather than stdout. You may also like to use -v option to fbackup to get more verbose info - see the fbackup man page for more.
regards,
Darren.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 12:38 AM
01-16-2004 12:38 AM
Re: fbackup redirection
I like to redirect the directory's and files from the tape !
For example:
I make backup of /home/usr1 and i want redirect this to an another directory
for example
/tmp/usr/usr1
I can simply do
frecover -f /dev/rmt/0m -i /home/usr1 -xv and afterthat cp /home/usr1 /tmp/usr but it is to difficulty.
I want to redirect it direct from the tape to an another directory
is it possibly ?
Idriz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2004 12:48 AM
01-16-2004 12:48 AM
Re: fbackup redirection
Thanks for clarifying that. :)
I think the -X option as suggested by Gideon is suitable for what you want to do.
I guess the data is taken from one server to another, otherwise you'd just perform a straight cp (or perhaps use cpio.)
regards,
Darren.