Results 1 to 3 of 3
Hello
I am trying to use gtar to create incremental backups. When createing the tar file I use the -g option. The problem I have is the restore part. When ...
- 06-01-2005 #1Just Joined!
- Join Date
- Sep 2003
- Location
- Laurel, MD
- Posts
- 27
Incremental Backup and Restore using gtar
Hello
I am trying to use gtar to create incremental backups. When createing the tar file I use the -g option. The problem I have is the restore part. When I do a restore I don't get files restored in their orig. dir. structure I get dir.s with numbers. The data is there its just in dir.s with numbers. Such as:
top_dir/filename
will restore as
103397785/top_dir/filename
What am I doing wrong? I don't want the numbered dirs.
Help
Thank you
thllgo
- 06-03-2005 #2Linux Engineer
- Join Date
- Feb 2005
- Posts
- 1,044
Why use gtar? I'd use find and cpio, with an option of compressing the final archive if space is a concern (but then maybe I'm just old-fashioned). find can be used to find files which have changed since a specific time so you can select what will be archived. man find for more details than you need. :o
- 06-03-2005 #3Just Joined!
- Join Date
- Sep 2003
- Location
- Laurel, MD
- Posts
- 27
Thanks for the note. I finally found the problem, it was a known bug in version of 1.13. I upgraded to 1.15 yesterday and no more problem. My largest concern was time when doing a full backup because of the amount of data we have. Surprisingly gtar is the fastest by far of all the options we tried.
Thank you
thllgo


Reply With Quote
