- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to backup a filesystem using fbackup?
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
06-25-2004 03:56 AM
06-25-2004 03:56 AM
Server: HP-UX, 11.11, OnlineJFS, Oracle
I want to backup (disk to disk) one filesystem
that contains Oracle data, binaries, etc.
I want to copy it from it's own filesystem (/u01) into another filesystem (/tmp).
fbackup looks like the best tool to use.
What would be the syntax for fbackup?
10 points to any good answer.
TIA, Gino
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 04:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 05:53 AM
06-25-2004 05:53 AM
Re: How to backup a filesystem using fbackup?
Is this command working for u ?
sh: cd /tmp;frecover -rv : not found.
I am getting this error message.
-- Sundar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 05:58 AM
06-25-2004 05:58 AM
Re: How to backup a filesystem using fbackup?
I could be wrong here but the above command line may not work.
frecover uses by default /dev/rmt/0m so you must specify -f - with frecover
Try this
fbackup -i /u01 -f - | (cd /tmp;frecover -Xrf -)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:01 AM
06-25-2004 06:01 AM
Re: How to backup a filesystem using fbackup?
Sundar: You are right, the command string
does not work. I am using both of these commands strings instead.
fbackup -f /tmp/bckup.u01 -g /tmp/graph.u01 -v -I /tmp/index.fbackup -0
fbackup -0 -g /tmp/graph.u01 -v -f /tmp/fbackup.u01.save 2>&1 | tee /tmp/fbackup.log
10 points to any good answer.
TIA, Gino
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:04 AM - last edited on 09-16-2024 02:26 AM by support_s
06-25-2004 06:04 AM - last edited on 09-16-2024 02:26 AM by support_s
Re: How to backup a filesystem using fbackup?
Just got this from frecover man page.
fbackup -i /u01 -f - | (cd /mnt; frecover -Xrf -)
Anil
- Tags:
- iLO_OA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:09 AM
06-25-2004 06:09 AM
Re: How to backup a filesystem using fbackup?
BTW - don't use /tmp
vxdump -0 -f - -s 1000000 -b 16 /u01 | (cd /newfilesystem ; vxrestore rf -)
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:11 AM
06-25-2004 06:11 AM
Re: How to backup a filesystem using fbackup?
Geoff:
Question, why not use /tmp if it has enough free disk space? Thanks for the alternative
command to fbackup.
10 points to any good answer.
TIA, Gino
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:21 AM
06-25-2004 06:21 AM
Re: How to backup a filesystem using fbackup?
Also, the command I gave you uses vxdump/vxrestore so it doesn't create an archive like tar/fbackup - it creates a copy - so you wouldn't want that all mixed up with /tmp
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:21 AM
06-25-2004 06:21 AM
Re: How to backup a filesystem using fbackup?
It is not preferred to use /tmp for couple of reasons
1) after all /tmp is supposed to be used for storing temporary files not the valuable data backup
2) if you have CLEAR_TMP set to 1 in /etc/rc.config.d/clean_tmps and reboot the system, boom -your backup is gone.
3) /tmp is critical for the functionality of number of commands/daemons and if you run out of space in /tmp, that might inadvertently cause problems.
See if you can use some other file system.
BTW is this your permanent signature â 10 points to any good answer. TIA, Ginoâ
S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:36 AM
06-25-2004 06:36 AM
Re: How to backup a filesystem using fbackup?
Sundar:
>BTW is this your permanent signature?
Not really, but I do it to encourage everyone
(anyone) to help with some ideas, or answers.
Thank you again.
Gino