Automatic backup of folderback up folder >4.7GB to DVDsusing deja dup to backup my ubuntu to a windows shared folderUbuntu 14.04 Periodical System Image BackupRestoring backup files from XP to Ubuntu14.10 backup folder to another drive in the same machine?Secure and automatic backup with rsyncSplitting rsnapshot backup to multiple disksBackup (Deja-Dup) repeats backup of multiple foldersA question on automatic backup of serverBack In Time restored files not visible

How can ping know if my host is down

Which was the first story featuring espers?

Quoting Keynes in a lecture

Mimic lecturing on blackboard, facing audience

Giving feedback to someone without sounding prejudiced

Why is the "ls" command showing permissions of files in a FAT32 partition?

Which Article Helped Get Rid of Technobabble in RPGs?

How to get directions in deep space?

Why Shazam when there is already Superman?

Why does this expression simplify as such?

Has the laser at Magurele, Romania reached a tenth of the Sun's power?

A variation to the phrase "hanging over my shoulders"

Why is so much work done on numerical verification of the Riemann Hypothesis?

The Digit Triangles

Is there a RAID 0 Equivalent for RAM?

Can I cause damage to electrical appliances by unplugging them when they are turned on?

Is it allowed to activate the ability of multiple planeswalkers in a single turn?

Creating two special characters

What is the difference between lands and mana?

What is the English pronunciation of "pain au chocolat"?

I found an audio circuit and I built it just fine, but I find it a bit too quiet. How do I amplify the output so that it is a bit louder?

What's the name of the logical fallacy where a debater extends a statement far beyond the original statement to make it true?

How to explain what's wrong with this application of the chain rule?

Microchip documentation does not label CAN buss pins on micro controller pinout diagram



Automatic backup of folder


back up folder >4.7GB to DVDsusing deja dup to backup my ubuntu to a windows shared folderUbuntu 14.04 Periodical System Image BackupRestoring backup files from XP to Ubuntu14.10 backup folder to another drive in the same machine?Secure and automatic backup with rsyncSplitting rsnapshot backup to multiple disksBackup (Deja-Dup) repeats backup of multiple foldersA question on automatic backup of serverBack In Time restored files not visible













3















I have one particular folder on my linux box that I would like to have fully backed up and be able to "go back in time" on a file and see all previous revisions.



To add complications, this folder is shared (with the inbuilt sharing tools) and is accessed and written to by a Windows machine. For this reason, I'd like the backup to be written to a place where the windows machine does not have access.



How can I set this up?










share|improve this question


























    3















    I have one particular folder on my linux box that I would like to have fully backed up and be able to "go back in time" on a file and see all previous revisions.



    To add complications, this folder is shared (with the inbuilt sharing tools) and is accessed and written to by a Windows machine. For this reason, I'd like the backup to be written to a place where the windows machine does not have access.



    How can I set this up?










    share|improve this question
























      3












      3








      3


      2






      I have one particular folder on my linux box that I would like to have fully backed up and be able to "go back in time" on a file and see all previous revisions.



      To add complications, this folder is shared (with the inbuilt sharing tools) and is accessed and written to by a Windows machine. For this reason, I'd like the backup to be written to a place where the windows machine does not have access.



      How can I set this up?










      share|improve this question














      I have one particular folder on my linux box that I would like to have fully backed up and be able to "go back in time" on a file and see all previous revisions.



      To add complications, this folder is shared (with the inbuilt sharing tools) and is accessed and written to by a Windows machine. For this reason, I'd like the backup to be written to a place where the windows machine does not have access.



      How can I set this up?







      backup






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 28 '14 at 12:19









      CheetahCheetah

      197127




      197127




















          3 Answers
          3






          active

          oldest

          votes


















          6














          Well I use the following script for my backup:



          #! /bin/bash

          # Gets date of most recent backup.
          newestfile=$(cd /home/<USERNAME>/.Backups && find . -type f -printf '%T@ %pn' | sort -n | tail -1 | cut -f2- -d" ")
          budate=`echo $newestfile| cut -c10-19`

          # Gets current date

          cdate=$(date --iso)

          # If the cureent date is the same as the date of the most recent backup, don't run the backup, just give a notification that says it has already been done today.

          if [ $cdate = $budate ]; then
          echo "Backup Complete"
          notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Already started/finished backup for today."

          # If the dates are different, start the backup.

          else
          echo "Starting backup"
          notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Starting backup for today."
          # Compresses the files into .tar.gz format

          tar -cvpzf /home/<USERNAME>/.Backups/backup-$(date +%Y-%m-%d-%H:%M).tar.gz "/home/<USERNAME>/folder/to/back/up" --exclude=.Backups && notify-send --expire-time=60000 -i /home/tim/Pictures/Home/Logos/safe.png 'Backup Status' 'Finished backup for today.'
          fi


          This will save a backup file that looks like this:



          backup-2014-07-26-13:13.tar.gz


          In the hidden folder /home/<USERNAME>/.Backups



          The safe.png file that it used for the notifications can be downloaded from here.



          1. Save the script in /home/<USERNAME>/Scripts as backup.sh



          2. Run the following commands:



            chmod +x Scripts/backup.sh
            mkdir .Backups
            touch .Backups/backup-2000-01-01-00:00.tar.gz



          3. Then add the command Scripts/./backup.sh to the start at login applications. Even if you login more than one time in a day, you only get 1 backup.



            OR



            You could also use cron to run the script regularly. Edit it using crontab -e and add this line to the end:



            0 15 * * * bash /path/to/script/backup.sh






          share|improve this answer




















          • 1





            You could also use cron to execute it hourly, daily or weekly, depending on your needs. In this example, the script is executed daily at 3pm: Launch crontab via crontab -e and add the following line to the end 0 15 * * * bash /path/to/script/backup.sh

            – jnuk
            Jul 28 '14 at 12:44











          • @jnuk Thank's, I never have understood cron enough to use it in an answer.

            – Tim
            Jul 28 '14 at 12:45












          • It's actually pretty simple. There are even generators for it.

            – jnuk
            Jul 28 '14 at 12:57











          • @jnuk Cool! That makes it easier!

            – Tim
            Jul 28 '14 at 13:00


















          1














          The solution I chose in the end was something called "Back In Time". I set the backup interval to 5 minutes and it backs up my specific folders to another location and allows me to go back through the snapshots it takes.



          http://backintime.le-web.org/






          share|improve this answer






























            0














            I did a little research and looked for GUI backup utilities that support at least Linux (they tended to be cross-platform). I also wanted good automation/interval capabilities. These are my 3 top picks, from what I read of reviews and can tell from intuition, all untested:




            1. Back In Time (See documentation for screenshots)

            2. fwbackups


            3. grsync (GUI for rsync)

            Hopefully that helps save others some time. There are a lot of backup utilities out there, but few with solid-looking GUI's for Linux that seemed to be modern.



            Honorable mention: Duplicati, though I've used it before on Windows and I wasn't very fond of its instability. My backups were getting corrupted or glitchy. Maybe in the long run they will fix these issues.





            share








            New contributor




            Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.



















              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "89"
              ;
              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: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              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%2faskubuntu.com%2fquestions%2f503677%2fautomatic-backup-of-folder%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              6














              Well I use the following script for my backup:



              #! /bin/bash

              # Gets date of most recent backup.
              newestfile=$(cd /home/<USERNAME>/.Backups && find . -type f -printf '%T@ %pn' | sort -n | tail -1 | cut -f2- -d" ")
              budate=`echo $newestfile| cut -c10-19`

              # Gets current date

              cdate=$(date --iso)

              # If the cureent date is the same as the date of the most recent backup, don't run the backup, just give a notification that says it has already been done today.

              if [ $cdate = $budate ]; then
              echo "Backup Complete"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Already started/finished backup for today."

              # If the dates are different, start the backup.

              else
              echo "Starting backup"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Starting backup for today."
              # Compresses the files into .tar.gz format

              tar -cvpzf /home/<USERNAME>/.Backups/backup-$(date +%Y-%m-%d-%H:%M).tar.gz "/home/<USERNAME>/folder/to/back/up" --exclude=.Backups && notify-send --expire-time=60000 -i /home/tim/Pictures/Home/Logos/safe.png 'Backup Status' 'Finished backup for today.'
              fi


              This will save a backup file that looks like this:



              backup-2014-07-26-13:13.tar.gz


              In the hidden folder /home/<USERNAME>/.Backups



              The safe.png file that it used for the notifications can be downloaded from here.



              1. Save the script in /home/<USERNAME>/Scripts as backup.sh



              2. Run the following commands:



                chmod +x Scripts/backup.sh
                mkdir .Backups
                touch .Backups/backup-2000-01-01-00:00.tar.gz



              3. Then add the command Scripts/./backup.sh to the start at login applications. Even if you login more than one time in a day, you only get 1 backup.



                OR



                You could also use cron to run the script regularly. Edit it using crontab -e and add this line to the end:



                0 15 * * * bash /path/to/script/backup.sh






              share|improve this answer




















              • 1





                You could also use cron to execute it hourly, daily or weekly, depending on your needs. In this example, the script is executed daily at 3pm: Launch crontab via crontab -e and add the following line to the end 0 15 * * * bash /path/to/script/backup.sh

                – jnuk
                Jul 28 '14 at 12:44











              • @jnuk Thank's, I never have understood cron enough to use it in an answer.

                – Tim
                Jul 28 '14 at 12:45












              • It's actually pretty simple. There are even generators for it.

                – jnuk
                Jul 28 '14 at 12:57











              • @jnuk Cool! That makes it easier!

                – Tim
                Jul 28 '14 at 13:00















              6














              Well I use the following script for my backup:



              #! /bin/bash

              # Gets date of most recent backup.
              newestfile=$(cd /home/<USERNAME>/.Backups && find . -type f -printf '%T@ %pn' | sort -n | tail -1 | cut -f2- -d" ")
              budate=`echo $newestfile| cut -c10-19`

              # Gets current date

              cdate=$(date --iso)

              # If the cureent date is the same as the date of the most recent backup, don't run the backup, just give a notification that says it has already been done today.

              if [ $cdate = $budate ]; then
              echo "Backup Complete"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Already started/finished backup for today."

              # If the dates are different, start the backup.

              else
              echo "Starting backup"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Starting backup for today."
              # Compresses the files into .tar.gz format

              tar -cvpzf /home/<USERNAME>/.Backups/backup-$(date +%Y-%m-%d-%H:%M).tar.gz "/home/<USERNAME>/folder/to/back/up" --exclude=.Backups && notify-send --expire-time=60000 -i /home/tim/Pictures/Home/Logos/safe.png 'Backup Status' 'Finished backup for today.'
              fi


              This will save a backup file that looks like this:



              backup-2014-07-26-13:13.tar.gz


              In the hidden folder /home/<USERNAME>/.Backups



              The safe.png file that it used for the notifications can be downloaded from here.



              1. Save the script in /home/<USERNAME>/Scripts as backup.sh



              2. Run the following commands:



                chmod +x Scripts/backup.sh
                mkdir .Backups
                touch .Backups/backup-2000-01-01-00:00.tar.gz



              3. Then add the command Scripts/./backup.sh to the start at login applications. Even if you login more than one time in a day, you only get 1 backup.



                OR



                You could also use cron to run the script regularly. Edit it using crontab -e and add this line to the end:



                0 15 * * * bash /path/to/script/backup.sh






              share|improve this answer




















              • 1





                You could also use cron to execute it hourly, daily or weekly, depending on your needs. In this example, the script is executed daily at 3pm: Launch crontab via crontab -e and add the following line to the end 0 15 * * * bash /path/to/script/backup.sh

                – jnuk
                Jul 28 '14 at 12:44











              • @jnuk Thank's, I never have understood cron enough to use it in an answer.

                – Tim
                Jul 28 '14 at 12:45












              • It's actually pretty simple. There are even generators for it.

                – jnuk
                Jul 28 '14 at 12:57











              • @jnuk Cool! That makes it easier!

                – Tim
                Jul 28 '14 at 13:00













              6












              6








              6







              Well I use the following script for my backup:



              #! /bin/bash

              # Gets date of most recent backup.
              newestfile=$(cd /home/<USERNAME>/.Backups && find . -type f -printf '%T@ %pn' | sort -n | tail -1 | cut -f2- -d" ")
              budate=`echo $newestfile| cut -c10-19`

              # Gets current date

              cdate=$(date --iso)

              # If the cureent date is the same as the date of the most recent backup, don't run the backup, just give a notification that says it has already been done today.

              if [ $cdate = $budate ]; then
              echo "Backup Complete"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Already started/finished backup for today."

              # If the dates are different, start the backup.

              else
              echo "Starting backup"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Starting backup for today."
              # Compresses the files into .tar.gz format

              tar -cvpzf /home/<USERNAME>/.Backups/backup-$(date +%Y-%m-%d-%H:%M).tar.gz "/home/<USERNAME>/folder/to/back/up" --exclude=.Backups && notify-send --expire-time=60000 -i /home/tim/Pictures/Home/Logos/safe.png 'Backup Status' 'Finished backup for today.'
              fi


              This will save a backup file that looks like this:



              backup-2014-07-26-13:13.tar.gz


              In the hidden folder /home/<USERNAME>/.Backups



              The safe.png file that it used for the notifications can be downloaded from here.



              1. Save the script in /home/<USERNAME>/Scripts as backup.sh



              2. Run the following commands:



                chmod +x Scripts/backup.sh
                mkdir .Backups
                touch .Backups/backup-2000-01-01-00:00.tar.gz



              3. Then add the command Scripts/./backup.sh to the start at login applications. Even if you login more than one time in a day, you only get 1 backup.



                OR



                You could also use cron to run the script regularly. Edit it using crontab -e and add this line to the end:



                0 15 * * * bash /path/to/script/backup.sh






              share|improve this answer















              Well I use the following script for my backup:



              #! /bin/bash

              # Gets date of most recent backup.
              newestfile=$(cd /home/<USERNAME>/.Backups && find . -type f -printf '%T@ %pn' | sort -n | tail -1 | cut -f2- -d" ")
              budate=`echo $newestfile| cut -c10-19`

              # Gets current date

              cdate=$(date --iso)

              # If the cureent date is the same as the date of the most recent backup, don't run the backup, just give a notification that says it has already been done today.

              if [ $cdate = $budate ]; then
              echo "Backup Complete"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Already started/finished backup for today."

              # If the dates are different, start the backup.

              else
              echo "Starting backup"
              notify-send -i /home/<USERNAME>/Pictures/Logos/safe.png "Backup Status" "Starting backup for today."
              # Compresses the files into .tar.gz format

              tar -cvpzf /home/<USERNAME>/.Backups/backup-$(date +%Y-%m-%d-%H:%M).tar.gz "/home/<USERNAME>/folder/to/back/up" --exclude=.Backups && notify-send --expire-time=60000 -i /home/tim/Pictures/Home/Logos/safe.png 'Backup Status' 'Finished backup for today.'
              fi


              This will save a backup file that looks like this:



              backup-2014-07-26-13:13.tar.gz


              In the hidden folder /home/<USERNAME>/.Backups



              The safe.png file that it used for the notifications can be downloaded from here.



              1. Save the script in /home/<USERNAME>/Scripts as backup.sh



              2. Run the following commands:



                chmod +x Scripts/backup.sh
                mkdir .Backups
                touch .Backups/backup-2000-01-01-00:00.tar.gz



              3. Then add the command Scripts/./backup.sh to the start at login applications. Even if you login more than one time in a day, you only get 1 backup.



                OR



                You could also use cron to run the script regularly. Edit it using crontab -e and add this line to the end:



                0 15 * * * bash /path/to/script/backup.sh







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Jul 28 '14 at 12:58









              Alaa Ali

              22.5k96994




              22.5k96994










              answered Jul 28 '14 at 12:34









              TimTim

              20k1586141




              20k1586141







              • 1





                You could also use cron to execute it hourly, daily or weekly, depending on your needs. In this example, the script is executed daily at 3pm: Launch crontab via crontab -e and add the following line to the end 0 15 * * * bash /path/to/script/backup.sh

                – jnuk
                Jul 28 '14 at 12:44











              • @jnuk Thank's, I never have understood cron enough to use it in an answer.

                – Tim
                Jul 28 '14 at 12:45












              • It's actually pretty simple. There are even generators for it.

                – jnuk
                Jul 28 '14 at 12:57











              • @jnuk Cool! That makes it easier!

                – Tim
                Jul 28 '14 at 13:00












              • 1





                You could also use cron to execute it hourly, daily or weekly, depending on your needs. In this example, the script is executed daily at 3pm: Launch crontab via crontab -e and add the following line to the end 0 15 * * * bash /path/to/script/backup.sh

                – jnuk
                Jul 28 '14 at 12:44











              • @jnuk Thank's, I never have understood cron enough to use it in an answer.

                – Tim
                Jul 28 '14 at 12:45












              • It's actually pretty simple. There are even generators for it.

                – jnuk
                Jul 28 '14 at 12:57











              • @jnuk Cool! That makes it easier!

                – Tim
                Jul 28 '14 at 13:00







              1




              1





              You could also use cron to execute it hourly, daily or weekly, depending on your needs. In this example, the script is executed daily at 3pm: Launch crontab via crontab -e and add the following line to the end 0 15 * * * bash /path/to/script/backup.sh

              – jnuk
              Jul 28 '14 at 12:44





              You could also use cron to execute it hourly, daily or weekly, depending on your needs. In this example, the script is executed daily at 3pm: Launch crontab via crontab -e and add the following line to the end 0 15 * * * bash /path/to/script/backup.sh

              – jnuk
              Jul 28 '14 at 12:44













              @jnuk Thank's, I never have understood cron enough to use it in an answer.

              – Tim
              Jul 28 '14 at 12:45






              @jnuk Thank's, I never have understood cron enough to use it in an answer.

              – Tim
              Jul 28 '14 at 12:45














              It's actually pretty simple. There are even generators for it.

              – jnuk
              Jul 28 '14 at 12:57





              It's actually pretty simple. There are even generators for it.

              – jnuk
              Jul 28 '14 at 12:57













              @jnuk Cool! That makes it easier!

              – Tim
              Jul 28 '14 at 13:00





              @jnuk Cool! That makes it easier!

              – Tim
              Jul 28 '14 at 13:00













              1














              The solution I chose in the end was something called "Back In Time". I set the backup interval to 5 minutes and it backs up my specific folders to another location and allows me to go back through the snapshots it takes.



              http://backintime.le-web.org/






              share|improve this answer



























                1














                The solution I chose in the end was something called "Back In Time". I set the backup interval to 5 minutes and it backs up my specific folders to another location and allows me to go back through the snapshots it takes.



                http://backintime.le-web.org/






                share|improve this answer

























                  1












                  1








                  1







                  The solution I chose in the end was something called "Back In Time". I set the backup interval to 5 minutes and it backs up my specific folders to another location and allows me to go back through the snapshots it takes.



                  http://backintime.le-web.org/






                  share|improve this answer













                  The solution I chose in the end was something called "Back In Time". I set the backup interval to 5 minutes and it backs up my specific folders to another location and allows me to go back through the snapshots it takes.



                  http://backintime.le-web.org/







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 31 '14 at 8:48









                  CheetahCheetah

                  197127




                  197127





















                      0














                      I did a little research and looked for GUI backup utilities that support at least Linux (they tended to be cross-platform). I also wanted good automation/interval capabilities. These are my 3 top picks, from what I read of reviews and can tell from intuition, all untested:




                      1. Back In Time (See documentation for screenshots)

                      2. fwbackups


                      3. grsync (GUI for rsync)

                      Hopefully that helps save others some time. There are a lot of backup utilities out there, but few with solid-looking GUI's for Linux that seemed to be modern.



                      Honorable mention: Duplicati, though I've used it before on Windows and I wasn't very fond of its instability. My backups were getting corrupted or glitchy. Maybe in the long run they will fix these issues.





                      share








                      New contributor




                      Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.
























                        0














                        I did a little research and looked for GUI backup utilities that support at least Linux (they tended to be cross-platform). I also wanted good automation/interval capabilities. These are my 3 top picks, from what I read of reviews and can tell from intuition, all untested:




                        1. Back In Time (See documentation for screenshots)

                        2. fwbackups


                        3. grsync (GUI for rsync)

                        Hopefully that helps save others some time. There are a lot of backup utilities out there, but few with solid-looking GUI's for Linux that seemed to be modern.



                        Honorable mention: Duplicati, though I've used it before on Windows and I wasn't very fond of its instability. My backups were getting corrupted or glitchy. Maybe in the long run they will fix these issues.





                        share








                        New contributor




                        Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.






















                          0












                          0








                          0







                          I did a little research and looked for GUI backup utilities that support at least Linux (they tended to be cross-platform). I also wanted good automation/interval capabilities. These are my 3 top picks, from what I read of reviews and can tell from intuition, all untested:




                          1. Back In Time (See documentation for screenshots)

                          2. fwbackups


                          3. grsync (GUI for rsync)

                          Hopefully that helps save others some time. There are a lot of backup utilities out there, but few with solid-looking GUI's for Linux that seemed to be modern.



                          Honorable mention: Duplicati, though I've used it before on Windows and I wasn't very fond of its instability. My backups were getting corrupted or glitchy. Maybe in the long run they will fix these issues.





                          share








                          New contributor




                          Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.










                          I did a little research and looked for GUI backup utilities that support at least Linux (they tended to be cross-platform). I also wanted good automation/interval capabilities. These are my 3 top picks, from what I read of reviews and can tell from intuition, all untested:




                          1. Back In Time (See documentation for screenshots)

                          2. fwbackups


                          3. grsync (GUI for rsync)

                          Hopefully that helps save others some time. There are a lot of backup utilities out there, but few with solid-looking GUI's for Linux that seemed to be modern.



                          Honorable mention: Duplicati, though I've used it before on Windows and I wasn't very fond of its instability. My backups were getting corrupted or glitchy. Maybe in the long run they will fix these issues.






                          share








                          New contributor




                          Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.








                          share


                          share






                          New contributor




                          Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered 2 mins ago









                          AndrewAndrew

                          1012




                          1012




                          New contributor




                          Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          Andrew is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Ask Ubuntu!


                              • 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%2faskubuntu.com%2fquestions%2f503677%2fautomatic-backup-of-folder%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







                              Popular posts from this blog

                              Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

                              Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

                              Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»