Ensure all folders are backupped via rsyncRemote backup of local server applying RsnapshotControl how long...

Multi tool use
Multi tool use

Omnidirectional LED, is it possible?

90s/2000s TV show : man uses government time machine to fix national problems

My employer is refusing to give me the pay that was advertised after an internal job move

How to innovate in OR

What force enables us to walk? Friction or normal reaction?

Do 3/8 (37.5%) of Quadratics Have No x-Intercepts?

Does Ubuntu reduces battery life?

Scam? Checks via Email

What Marvel character has this 'W' symbol?

What clothes would flying-people wear?

Wrapping IMemoryCache with SemaphoreSlim

How do I say "this is why…"?

Surviving a planet collision?

Why did some Apollo missions carry a grenade launcher?

How do I make my photos have more impact?

What are the cons of stateless password generators?

How does the Thief's Fast Hands feature interact with mundane and magical shields?

Convert graph format for Mathematica graph functions

Just how much information should you share with a former client?

Summoning A Technology Based Demon

Alternatives to minimizing loss in regression

Why does the Rust compiler not optimize code assuming that two mutable references cannot alias?

Why was the LRV's speed gauge displaying metric units?

How to have poached eggs in "sphere form"?



Ensure all folders are backupped via rsync


Remote backup of local server applying RsnapshotControl how long Rsnapshot keeps a file after being deletedReasons for rsync NOT transferring all files?How to backup readable but not writable files using rsync?rsync with --link-dest options doesn't create hard linksProper way to set up rsnapshot over sshRemote Syncing RSnapshotsManually synchronizing two BTRFS snapshots with RSYNCScheduled folder backupGetting Rsnapshot permissions right






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















On my Xen Host I first create an up-to-date snapshot of all VMs and then I use rsnapshot to backup all my important folders daily.



Secondly I backup the same folders on an external server via rsync



how can I ensure all those folders are successfully backed up on the external server?










share|improve this question































    0















    On my Xen Host I first create an up-to-date snapshot of all VMs and then I use rsnapshot to backup all my important folders daily.



    Secondly I backup the same folders on an external server via rsync



    how can I ensure all those folders are successfully backed up on the external server?










    share|improve this question



























      0












      0








      0








      On my Xen Host I first create an up-to-date snapshot of all VMs and then I use rsnapshot to backup all my important folders daily.



      Secondly I backup the same folders on an external server via rsync



      how can I ensure all those folders are successfully backed up on the external server?










      share|improve this question














      On my Xen Host I first create an up-to-date snapshot of all VMs and then I use rsnapshot to backup all my important folders daily.



      Secondly I backup the same folders on an external server via rsync



      how can I ensure all those folders are successfully backed up on the external server?







      lvm backup rsnapshot






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 29 mins ago









      rubo77rubo77

      8,50927 gold badges77 silver badges142 bronze badges




      8,50927 gold badges77 silver badges142 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0














          Before I do the external backup, I create hidden files .backupped_folder in all folders in the vms, that contains the current date, that are defined in rsnapshot with



          for f in $list_of_folders_to_backup; do date>"$f".backupped_folder; done


          Then I can check on the external server if all those folders are up-to-date with



          for f in $(locate .backupped_folder); do echo -n "$f - "; cat "$f"; done





          share|improve this answer






























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f533056%2fensure-all-folders-are-backupped-via-rsync%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Before I do the external backup, I create hidden files .backupped_folder in all folders in the vms, that contains the current date, that are defined in rsnapshot with



            for f in $list_of_folders_to_backup; do date>"$f".backupped_folder; done


            Then I can check on the external server if all those folders are up-to-date with



            for f in $(locate .backupped_folder); do echo -n "$f - "; cat "$f"; done





            share|improve this answer
































              0














              Before I do the external backup, I create hidden files .backupped_folder in all folders in the vms, that contains the current date, that are defined in rsnapshot with



              for f in $list_of_folders_to_backup; do date>"$f".backupped_folder; done


              Then I can check on the external server if all those folders are up-to-date with



              for f in $(locate .backupped_folder); do echo -n "$f - "; cat "$f"; done





              share|improve this answer






























                0












                0








                0







                Before I do the external backup, I create hidden files .backupped_folder in all folders in the vms, that contains the current date, that are defined in rsnapshot with



                for f in $list_of_folders_to_backup; do date>"$f".backupped_folder; done


                Then I can check on the external server if all those folders are up-to-date with



                for f in $(locate .backupped_folder); do echo -n "$f - "; cat "$f"; done





                share|improve this answer















                Before I do the external backup, I create hidden files .backupped_folder in all folders in the vms, that contains the current date, that are defined in rsnapshot with



                for f in $list_of_folders_to_backup; do date>"$f".backupped_folder; done


                Then I can check on the external server if all those folders are up-to-date with



                for f in $(locate .backupped_folder); do echo -n "$f - "; cat "$f"; done






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 20 mins ago

























                answered 29 mins ago









                rubo77rubo77

                8,50927 gold badges77 silver badges142 bronze badges




                8,50927 gold badges77 silver badges142 bronze badges

































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f533056%2fensure-all-folders-are-backupped-via-rsync%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    S gxgfD4lkzOX2nXtVwR3lNKqC367QT,A wrtcsh6z,I2fqJ,V2zsTWh9M qr,qKUPJSgBi
                    QrTYkky 4 MkXBO,qu9J2fSq2im 4EtDKd,OFE88SfkTX4mFX T2U,OhfkTLaSsw2Zo1KZHIj OY3RYhPPdqeQSrar8

                    Popular posts from this blog

                    Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

                    Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

                    Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...