- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Incremental/Diffrential Backup via 'tar'
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
Discussions
Discussions
Discussions
Forums
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
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
тАО03-18-2004 01:48 AM
тАО03-18-2004 01:48 AM
Please kindly let me know how can I take incremental/diffrential backups, via tar utility. Please let me know the syntax
#tar -cvf /mnt/backup /
so what should i write now to take incremental/diffrential backup, please write the SYNTAX.
Many Many Thanks in Advance
Best Regards
Maaz
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-18-2004 04:10 AM
тАО03-18-2004 04:10 AM
Re: Incremental/Diffrential Backup via 'tar'
Thaanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-18-2004 06:07 AM
тАО03-18-2004 06:07 AM
Solutionyou might want to checkout
http://tille.soti.org/training/tldp/ch09.html#sect_09_01_01_02
for documentation on this.
Also amanda (www.amanda.org) might be worth a look.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-18-2004 06:44 AM
тАО03-18-2004 06:44 AM
Re: Incremental/Diffrential Backup via 'tar'
Anyway dump/restore (or ufsdump/ufsrestore on other unices) will let you do incremental backups... see the man pages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-18-2004 07:06 AM
тАО03-18-2004 07:06 AM
Re: Incremental/Diffrential Backup via 'tar'
Alternatively, you could whip something together using the -newer option of the find command and piping the output to tar.
e.g.
find /somedir -newer somefile | tar cvf /dev/mytapedevice
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2004 07:30 AM
тАО03-19-2004 07:30 AM
Re: Incremental/Diffrential Backup via 'tar'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2004 06:21 PM
тАО03-19-2004 06:21 PM
Re: Incremental/Diffrential Backup via 'tar'
# tar -cvf /mnt/backup040320 -g snapshot-20040320 /
# tar -cvf /mnt/backup040321 -g snapshot-20040320 /
Many Thanks Martin.
And Jim Donovan, could u please explain a bit more, I didnt get you, u wrote:
find /somedir -newer somefile | tar cvf /dev/mytapedevice
could u please kindly explain it. i just didnt understand "find /somedir -newer somefile" could u please write the EXACT syntax. Do u mean "find / - newer backup.tar |tar -cvf /mnt/backupmedia" Infact I just didnt understand what do mean by "-newer somefile" portion of the syntax. But many thanks for ur feedback Jim.
And Olivier Drouin, I try my best to follow ur suggestions, anyway many thanks.
And in last Many Thanks Jeroen Peereboom. Infact i dont want to replace previos files, with modified ones. what i want is to take backup in new archive, if there is any modification occured, as compare to prevois archive.
THANKS A MILLION, TO U ALL FOR THE FEEDBACKS.
Best Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2004 07:07 PM
тАО03-19-2004 07:07 PM
Re: Incremental/Diffrential Backup via 'tar'
The standard find command that comes with RHAS2.1 also allows for '-anewer file' and '-cnewer file', which 'find' files that have been Accessed more recently or Changed more recently, respectively.