- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Fbackup and restore
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-13-2003 08:04 PM
08-13-2003 08:04 PM
Fbackup and restore
fbackup:
/home/usera/abc
/home/userb/def
/home/userc/ghi
but only the following files are restored ,
/home/usera
/home/userb
/home/userc
the files abc , def , ghi are disappeared , how can i restore it ? thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 08:19 PM
08-13-2003 08:19 PM
Re: Fbackup and restore
# frecover -I /tmp/index -f /dev/rmt/?m
If they are, then create a simple text file
# vi /tmp/graph
insert like this
i /home/usera/abc
i /home/userb/def
i /home/userc/ghi
Save the file
Running this should recover the files.
# frecover -xg /tmp/graph -f /dev/rmt/?m
Change the ?m to your corresponding device.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 08:22 PM
08-13-2003 08:22 PM
Re: Fbackup and restore
Maybe a wrong syntax while adding components to be restored in SAM?
I can't remember now, but try with lines like
"/home/usera/" or
"/home/usera/*.*"
Also check if the files are really backup up.
Hope this helps.
Regards,
Zigor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 08:45 PM
08-13-2003 08:45 PM
Re: Fbackup and restore
Check whether the subdirectories exist in the tape using :
frecover -f
do a grep on /tmp/index , e.g:
grep /home/usera/abc /tmp/index
if exist next do the frecover with inclusion and if not exist,do another backup.
is the subdirectories abc , def are NFS...
if nfs you need to -n for fbackup.
regards
mB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 09:17 PM
08-13-2003 09:17 PM
Re: Fbackup and restore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 09:23 PM
08-13-2003 09:23 PM
Re: Fbackup and restore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 10:31 PM
08-13-2003 10:31 PM
Re: Fbackup and restore
I think the sam function can't restore the files on the sub-directory ( only files under /home but not usera , userb , userc ) , you method is good , but I have over 200 files under usera , how to restore all the files (including the subdirectories) under /home ? thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 10:33 PM
08-13-2003 10:33 PM
Re: Fbackup and restore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 10:42 PM
08-13-2003 10:42 PM
Re: Fbackup and restore
e.g. graph file
i /home/usera
Will restore all files and subdirectories underneath it.
# frecover -xg /tmp/graph -f /dev/rmt/?m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 10:46 PM
08-13-2003 10:46 PM
Re: Fbackup and restore
The following command should restore everything under /home to its orginal location.
# frecover -x -v -f
Cheers
Con
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 10:56 PM
08-13-2003 10:56 PM
Re: Fbackup and restore
I have just tested with SAM, and it works fine.
I have added "/home/" directory to be restored and all its files and subdirectories has been restored.
Regards,
Zigor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2003 09:13 AM
08-14-2003 09:13 AM
Re: Fbackup and restore
frecover -x -o -i /home/usera -f /dev/rmt/...
Elena.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2003 06:48 PM
08-14-2003 06:48 PM
Re: Fbackup and restore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2003 06:58 PM
08-14-2003 06:58 PM
Re: Fbackup and restore
Have you tried using the "-X" (Capital X) option. This will restore to the current directory & include the directory structure.
# frecover -xv -X -f
Cheers
Con