- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Fbackup question
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
09-27-2000 08:07 AM
09-27-2000 08:07 AM
There is a significant difference between fbackup and old-fashioned dump utility.
dump requires separate command for every file system (e.g. "dump 0uf ... / ", "dump 0uf ... /usr "). On the other hand, fbackup copies all the system if a command like
"fbackup -f /dev/rmt/0m -0vi /" is issued.
I'd like to know the best way to "fbackup" a file system without backing up of other
file systems mounted below.
Thanks in advance for your comments!
Solved! Go to Solution.
- Tags:
- fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 08:15 AM
09-27-2000 08:15 AM
SolutionSee man fbackup for details. fbackup and frecover employ a 'graph' file in which you include and/or exclude files and/or directories as you see fit. The graph has simple entries like:
i /var
e /var/tmp
which would request a backup on the /var directory, but exclude the /var/tmp subdirectory.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 08:15 AM
09-27-2000 08:15 AM
Re: Fbackup question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 03:17 PM
09-27-2000 03:17 PM
Re: Fbackup question
other way and the easy way to start is using sam "fbackup". in the sam-->backup
Configure the backup using the menu driven options which also has include, exclude options and incremental options aswell. Once you are happy with your backup configuration, you can see what the command it is going to excute and look in to it.
you can also schedule this backup which will keep a entry in the crontab.
hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 11:39 PM
09-27-2000 11:39 PM
Re: Fbackup question
I believed that there was an easy way to force fbackup work with filesystems in "dump-style". Now I see that usage of include/exclude options is the best practice.