• Backup

    From Rick Smith@1:340/202.1 to All on Mon Jun 8 20:54:00 2020
    Greetings All!


    I was wondering if anyone can recommend a backup program, I would like to run (auto if possible) routine that can back up certain directories and ftp it to my NAS, I have a routine for the ftp part if the backup program cant do that piece..

    Regards,



    ----
    Rick Smith (Nitro)

    ... Reality is for people who can't handle BBSing
    --- GoldED+/LNX 1.1.5-b20180707
    * Origin: ----> Abacus Sysop Point --->>>>bbs.abon.us:2323 (1:340/202.1)
  • From Richard Menedetter@2:310/31 to Rick Smith on Tue Jun 9 08:18:36 2020
    Hi Rick!

    08 Jun 2020 20:54, from Rick Smith -> All:

    I was wondering if anyone can recommend a backup program, I would like
    to run (auto if possible) routine that can back up certain directories
    and ftp it to my NAS, I have a routine for the ftp part if the backup program cant do that piece..

    Take a look on something rsync based.

    CU, Ricsi

    ... We need either less corruption or more chance to participate in it!
    --- GoldED+/LNX
    * Origin: We have found the enemy and he is us. (2:310/31)
  • From Tony Langdon@3:633/410 to Rick Smith on Tue Jun 9 20:29:00 2020
    On 06-08-20 20:54, Rick Smith wrote to All <=-

    Greetings All!


    I was wondering if anyone can recommend a backup program, I would like
    to run (auto if possible) routine that can back up certain directories
    and ftp it to my NAS, I have a routine for the ftp part if the backup program cant do that piece..

    Regards,

    tar? :)

    That or zip are what I use on my Linux systems. :)


    ... TARDIS Express: When it absolutely must be there Before you send it!
    === MultiMail/Win v0.51
    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From mark lewis@1:3634/12 to Rick Smith on Tue Jun 9 08:30:05 2020
    Re: Backup
    By: Rick Smith to All on Mon Jun 08 2020 20:54:00


    I was wondering if anyone can recommend a backup program,

    rsync


    )\/(ark
    --- SBBSecho 3.11-Linux
    * Origin: SouthEast Star Mail HUB - SESTAR (1:3634/12)
  • From Vincent Coen@2:250/1 to Rick Smith on Tue Jun 9 15:42:32 2020
    Hello Rick!

    Monday June 08 2020 20:54, you wrote to All:

    Greetings All!


    I was wondering if anyone can recommend a backup program, I would like
    to run (auto if possible) routine that can back up certain directories
    and ftp it to my NAS, I have a routine for the ftp part if the backup program cant do that piece..

    I use rsync as two streams for / partition as root and /home for all user areas.

    See below scripts :

    Home :

    #!/bin/bash
    time rsync -avvuhh --stats --delete --exclude=/home/vince/Music2 /home /home/vince/Music2/Backups > rsync-home.log 2>rsync-home.err
    exit 0


    Boot:

    #!/bin/bash
    time rsync -avvuhh --stats --delete --exclude=/dev --exclude=/proc --exclude=/mnt --exclude=/run --exclude=/tmp --exclude=/home --exclude=/media --exclude=/sys / /home/vince/Music2/Backups/SSD-Mageia-v7-HDD > rsync-root.log 2>rsync-root.err
    exit 0


    Mind you trying to make an image of the boot (/) back up to another drive (a SSD) mounted as /mnt/disk1 does not work as it create a directory 2 with 2 blocks of restored data as / and disk1 both in the directory I am running it from.

    Mounted devices :

    $ df
    Filesystem Size Used Avail Use% Mounted on
    /dev/sdc3 88G 18G 66G 22% /mnt/disk1
    /dev/sda9 992G 607G 335G 65% /home
    /dev/sdb1 2.7T 873G 1.9T 32% /home/vince/Music2

    I have ommitted some systems.


    Vincent

    --- Mageia Linux v7.1 X64/Mbse v1.0.7.13/GoldED+/LNX 1.1.5-b20180707
    * Origin: Air Applewood, The Linux Gateway to the UK & Eire (2:250/1)
  • From Rick Smith@1:340/202.1 to Tony Langdon on Tue Jun 9 07:14:10 2020
    Greetings Tony!

    09 Jun 20 20:29, you wrote to me about an urgent matter!:

    On 06-08-20 20:54, Rick Smith wrote to All <=-


    That or zip are what I use on my Linux systems. :)


    Im sorry I was referring to backup software not archivers



    ----
    Rick Smith (Nitro)

    ... It was good BBSing with you @F
    --- GoldED+/LNX 1.1.5-b20180707
    * Origin: ----> Abacus Sysop Point --->>>>bbs.abon.us:2323 (1:340/202.1)
  • From Dennis Katsonis to Rick Smith on Wed Jun 10 21:10:00 2020
    Rick Smith wrote to Tony Langdon <=-

    Greetings Tony!

    09 Jun 20 20:29, you wrote to me about an urgent matter!:

    On 06-08-20 20:54, Rick Smith wrote to All <=-


    That or zip are what I use on my Linux systems. :)


    Im sorry I was referring to backup software not archivers


    Ahh, I was going to recommend Denis Corbin's DAR.

    What are your other requirements? I was looking for a backup program too, but I found they generally fell into three groups. The first were more complex systems like Bacula which were really for the "enterprise". The second were just front ends to CLI tools, which I kind of think you may as well use the tool directly, and the third were command line tools like BORG.

    Do you have many directories to backup? What sort of backup schedule? Do you need differential/incremental backups?

    ... Dennis Katsonis
    --- MultiMail/Linux v0.52
  • From Tony Langdon@3:633/410 to Rick Smith on Wed Jun 10 19:20:00 2020
    On 06-09-20 07:14, Rick Smith wrote to Tony Langdon <=-

    Greetings Tony!

    09 Jun 20 20:29, you wrote to me about an urgent matter!:

    On 06-08-20 20:54, Rick Smith wrote to All <=-


    That or zip are what I use on my Linux systems. :)


    Im sorry I was referring to backup software not archivers

    Well, I do my backups with tar/gzip or zip (the latter if there's something that might be restorable on Windows). This is easily scripted, including naming backups with a datestamp (at least in Linux).

    So, you really need to be more specific with your question. :)


    ... Rugby is played by men with odd-shaped balls!!
    === MultiMail/Win v0.51
    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From mark lewis@1:3634/12 to Tony Langdon on Wed Jun 10 09:32:22 2020
    Re: Re: Backup
    By: Tony Langdon to Rick Smith on Wed Jun 10 2020 19:20:00


    Im sorry I was referring to backup software not archivers

    Well, I do my backups with tar/gzip or zip (the latter if
    there's something that might be restorable on Windows).
    This is easily scripted, including naming backups with a
    datestamp (at least in Linux).

    powershell should be able to return a timestamp for use in naming files, too...

    what you describe for linux is a method i use, too... once i create the archive, i scp it to another machine or three... at least one is offsite...

    interestingly enough, archiving and then backing up to a media is how many winwhatever backup solutions work... or they do an rsync-type backup where they move only the new and/or changed files... the question is how
    automated do you want it and how much work are you willing to do to achieve this operation ;)


    )\/(ark
    --- SBBSecho 3.11-Linux
    * Origin: SouthEast Star Mail HUB - SESTAR (1:3634/12)
  • From Benny Pedersen@2:230/0 to Rick Smith on Wed Jun 10 22:25:56 2020
    Hello Rick!

    08 Jun 2020 20:54, Rick Smith wrote to All:

    I was wondering if anyone can recommend a backup program, I would like
    to run (auto if possible) routine that can back up certain directories and ftp it to my NAS, I have a routine for the ftp part if the backup program cant do that piece..

    backup ?, if your linux server is ftp, then sync that with the nas, if there is apps to mirror ftp ?

    i just say rsyncd on linux server, and then rsync client on nas, no problem, remember to make the rsyncd running read only, so its not sync both ways and get loosing files, hoppefully you dont want that

    i can help with the rsyncd if needed


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.1.2 (Linux/5.7.1-gentoo-x86_64 (x86_64))
    * Origin: I will always keep a PC running CPM 3.0 (2:230/0)
  • From Tony Langdon@3:633/410 to mark lewis on Thu Jun 11 20:45:00 2020
    On 06-10-20 09:32, mark lewis wrote to Tony Langdon <=-

    powershell should be able to return a timestamp for use in naming
    files, too...

    I haven't done much with Powershell, but I wouldn't be surprised if it can name files by date.

    what you describe for linux is a method i use, too... once i create the archive, i scp it to another machine or three... at least one is offsite...

    Yep, I try and have it as hands off as possible. :)

    interestingly enough, archiving and then backing up to a media is how
    many winwhatever backup solutions work... or they do an rsync-type
    backup where they move only the new and/or changed files... the
    question is how automated do you want it and how much work are you
    willing to do to achieve this operation ;)

    Yep. I've found standard Linus tools like tar, gzip and rsync are easier for me, because they're portable.



    ... Before they invented drawing boards, what did they go back to?
    === MultiMail/Win v0.51
    --- SBBSecho 3.10-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)