Creating Incremental Backups with Tar

Поделиться
HTML-код
  • Опубликовано: 15 дек 2024

Комментарии • 20

  • @nicolasst225
    @nicolasst225 4 года назад +1

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

  • @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.

  • @mranderson2492
    @mranderson2492 3 года назад

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

  • @huyvole9724
    @huyvole9724 11 месяцев назад

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

  • @tackle4826mc
    @tackle4826mc 4 года назад

    Thank you for clearly tutorial ;)

  • @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.

  • @MohdDanish-kv9sw
    @MohdDanish-kv9sw 2 года назад

    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

  • @gihanarambawela5637
    @gihanarambawela5637 Год назад

    Thank you so much

  • @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 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?

  • @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?

  • @leo-rq2ei
    @leo-rq2ei 6 лет назад

    Cool way of creating files ✌🏻

  • @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

  • @turunacg
    @turunacg 6 лет назад

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

  • @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

  • @DurgaswaroopPerla
    @DurgaswaroopPerla 3 года назад

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