Creating Incremental Backups with Tar

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ต.ค. 2024

ความคิดเห็น • 20

  • @userAndix
    @userAndix 4 ปีที่แล้ว

    Thanks a lot man! Finally got an explanation how tar really works. Maybe the Linux wiki could link to this because this Video made the topic a lot clearer to me.

  • @huyvole9724
    @huyvole9724 9 หลายเดือนก่อน

    Your voice that's really nice. Can you post more and deep about tar backup/restore?

  • @nicolasst225
    @nicolasst225 4 ปีที่แล้ว +1

    Great video. Tanks for it. Why do you use --verbose twice?

  • @gihanarambawela5637
    @gihanarambawela5637 ปีที่แล้ว

    Thank you so much

  • @tackle4826mc
    @tackle4826mc 4 ปีที่แล้ว

    Thank you for clearly tutorial ;)

  • @leo-rq2ei
    @leo-rq2ei 6 ปีที่แล้ว

    Cool way of creating files ✌🏻

  • @SlideRSB
    @SlideRSB 6 ปีที่แล้ว

    Great demonstration! I'm still a little confused. I would have thought that the delete instruction was in the snapshot file. That appears to not be the case. Am I correct in assuming that there's some metadata about files deleted in the actual tar file itself? Also, why is it necessary to give /dev/null as a snapshot when restoring? Why can't we just leave off the --listed-incremental argument?

  • @markolinostyle
    @markolinostyle 5 ปีที่แล้ว

    Yhank you so much for this video, it has been very instructive. The only thing I still don't get (might be because English isn't my mother tonge) why you need to specify a snar file in the backing-up process whereas in the restoring one you don't. If it does take the info from the tar file. Why doesn't it just use the tar file to do the comparing in the whole process? I'm new in Linux.
    Again thank you for your video.

  • @vrejab3795
    @vrejab3795 3 ปีที่แล้ว

    Thank you for the great video.
    Only one question:
    1. Can we use the '-z' flag for the incremental backups/extracts accordingly to have compressed files?

  • @turunacg
    @turunacg 6 ปีที่แล้ว

    Great, I'm using FIND with CTIME and exec TAR for incremental backup.

  • @mranderson2492
    @mranderson2492 3 ปีที่แล้ว

    How to get progress bar e.g. "pv" for extraction/compessing in the case of incremental tar?

  • @markolinostyle
    @markolinostyle 4 ปีที่แล้ว

    Hi: I finnlly got the answer for the questions I had, but I have another question. Is it possible to make a disk image incremental backup on Linux terminal?

  • @DurgaswaroopPerla
    @DurgaswaroopPerla 3 ปีที่แล้ว

    It would have been so much better if you had done "ls" intermediately to show the files being created.

  • @racingtheweb
    @racingtheweb 6 ปีที่แล้ว

    Hi, I tryed rsync for backup my data, but unfortunately it hangs on some files, so I can't use it because it just doesn't work properly. So I'm looking at tar, hoping this one could be the right backup system for me. I need incremental backups too, so I have to test your istructions in my pc. It would be great if I knew how to get a fully automated daily snapshots (just like you made in your video, but automated). By the way, very good tutorial, thank you.

    • @ahmarsiddiqui
      @ahmarsiddiqui 6 ปีที่แล้ว

      a simple bash/node script will do the automated stuff which u can schedule via cron

    • @racingtheweb
      @racingtheweb 6 ปีที่แล้ว

      I'll try it :-)

    • @ahmarsiddiqui
      @ahmarsiddiqui 6 ปีที่แล้ว

      let me know how it goes or u need any help , writing automated stuff always makes me excited :)

    • @racingtheweb
      @racingtheweb 6 ปีที่แล้ว

      Thank you very much, now I'm checking the new Urbanpenguin video in which he just explains how to make a script in order to get a fully automated backup. Take a look at it

  • @solarcircuit360
    @solarcircuit360 2 ปีที่แล้ว

    what about using "for" utility to append the data to multiple files instead of doing that on multiple commandlines.
    # touch file{1..5}.txt
    # for i in file{1..5}.txt
    > do
    > echo "this is a test file" >> $i
    > echo "this is a test file" >> $i
    > done

  • @MohdDanish-kv9sw
    @MohdDanish-kv9sw ปีที่แล้ว

    tar: data.tuesday.tar: Cannot open: No such file or directory
    tar: Error is not recoverable: exiting now
    not working for me if i try to restore the backup