Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
03-15-2002, 05:51 AM
|
#1
|
LQ Newbie
Registered: Mar 2002
Posts: 3
Rep:
|
Incremental tar backups
Hello to all :
I have a question with tar backuping to a tape.
How I make an incremental backup (all files created/modified since a given time) with tar ?
I know how to make a differential one, with tar cvzf /dev/tape --newer m/d/y /backupdir.
It is possible ?
Thanks to all of you in advance
|
|
|
03-15-2002, 09:47 AM
|
#2
|
Member
Registered: Mar 2002
Distribution: Mandrake 8.1
Posts: 386
Rep:
|
Isn't that what "--newer" does?
What about "--update" ??
|
|
|
03-15-2002, 09:57 AM
|
#3
|
Senior Member
Registered: Apr 2001
Location: Perry, Iowa
Distribution: Mepis , Debian
Posts: 2,692
Rep:
|
|
|
|
03-15-2002, 04:26 PM
|
#4
|
LQ Newbie
Registered: Mar 2002
Posts: 3
Original Poster
Rep:
|
Well, the fact is ... previously I used this system :
find /backupdir -anewer lastbackup.id -print > list.txt
For example, the list.txt, resulted from the find output, is like this one :
/backupdir/users/john/work1
/backupdir/users/john/work1/work1.psd
/backupdir/users/john/letters
/backupdir/users/john/letters/letter1.txt
/backupdir/users/john/letters/letter2.txt
tar cvzf archive -T list.txt
The problem is that when I run the above tar command, it makes the tar archive with ALL the entire work1 directory and ALL entire letters directory, when the only modified files are work1.psd, and letter1.txt and letter2.txt (Those are examples)
Any idea on how to remove the directory lines from the find output, only leaving the lines with a path/filename to avoid tar backup the entire directory ?
Thanks in advance, Pepe.
|
|
|
03-15-2002, 04:35 PM
|
#5
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
find /backupdir -anewer lastbackup.id -print -type f > list.txt
|
|
|
03-18-2002, 03:31 AM
|
#6
|
LQ Newbie
Registered: Mar 2002
Posts: 3
Original Poster
Rep:
|
Thank you very much.
|
|
|
All times are GMT -5. The time now is 03:52 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|