- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- what backup command to incrementally backup files
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
07-25-2005 12:37 PM
07-25-2005 12:37 PM
what backup command to incrementally backup files
Generally I use tar or cpio to backup some file.
If I want incrementally to backup these file as backup database, for example, to do a full backup and some increment backup
What back command I casn use
May be tar or cpio call some arguments
can use,but not automatic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 12:45 PM
07-25-2005 12:45 PM
Re: what backup command to incrementally backup files
fbackup command is the solution...
for more info...look at the url
http://docs.hp.com/en/B2355-90691/fbackup.1M.html
All the Best !!!
Vinod K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 03:07 PM
07-25-2005 03:07 PM
Re: what backup command to incrementally backup files
As mentioned above, fbackup would be your best bet. fbackup can handle fulls and incrementals with no problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 04:47 PM
07-25-2005 04:47 PM
Re: what backup command to incrementally backup files
tar -u
This will tar only the updated files and leave the rest.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 05:46 PM
07-25-2005 05:46 PM
Re: what backup command to incrementally backup files
As explained earlier "fbackup" is the command avaible on HPUX to do incremental backups. You can use it as:
# fbackup -v -g gfile -u -2 -f /dev/rmt/0m
Here /dev/rmt/0m is your backup device. -u option updates /var/adm/fbackupfiles which keeps track of the history of the files. Now that if you are executing this for the first time it will be a full backup and not incremental. -g is used to backup selected files specified in gfile which is a normal text file.
Now in order to take incremental backup next time you need to change the level to 3 and then all files modified since level 2 backup will only be backuped during level 3 backup.
# fbackup -v -g gfile -u -3 -f /dev/rmt/0m
See man fbackup for more details.
Hope that helps.
Regards,