- 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
02-04-2003 08:28 PM
02-04-2003 08:28 PM
frecover
Using frecover utility if I want to restore all the files starting with Jan...
Can I use Jan*
ex.:frecover -xv -X -i /u01/Jan* -f /dev/rmt/0m
Will this frecover command restore all the files starting with Jan....
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 08:34 PM
02-04-2003 08:34 PM
Re: frecover
sam
backup and recovery
recover files interatively.
I know Bill Hassell does everything on the command line, but for selective recoveries, I'm more comfortable with that. Just a suggestion.
P
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 08:53 PM
02-04-2003 08:53 PM
Re: frecover
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xdc224b3ef09fd611abdb0090277a778c,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 01:02 AM
02-05-2003 01:02 AM
Re: frecover
I suppose the regular expressions are not working so correctly with frecover.
So you can try to create graph file
with Jan*-file and use it:
1. Create graphfile:
#ll -a | grep Jan |
awk -v var=/u01/ '{print "i",var$9}' > ./graphfile
2.Use it:
#frecover -xX -g ./graphfile -f /dev/rmt/0m
Regards,Stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 01:19 AM
02-05-2003 01:19 AM
Re: frecover
frecover does not accept wildcards for the include list.
So either restore the complete directory, if feasible.
Or extract the index to a file, grep the required files, and use the result as a graph file :
frecover -I /tmp/index -f /dev/yourdev
grep "/u01/Jan" /tmp/index > /tmp/graph
frecover -xXv -g /tmp/graph -f /dev/yourdev
good luck,
Thierry.