4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
◄Older
page 1 / 2
23 results tagged backup x
  • thumbnail
    restic backup with auto restic, autorestic and an nfs server as a remote storage

    restic.sh

    #!/bin/bash
    timeout 30 mount /home/backup/ && time autorestic --config /home/changeme/.autorestic.yml backup -a ; umount /home/backup

    restic.service

    [Unit]
    Description="Restic script"
    
    [Service]
    ExecStart=/bin/bash -c "/home/changeme/restic.sh"

    restic.timer

    [Unit]
    Description="Run restic.service 5min after boot and every 24 hours relative to activation time"
    
    [Timer]
    OnBootSec=5min
    OnUnitActiveSec=24h
    OnCalendar=Mon..Fri *-*-* 10:00:*
    Unit=restic.service
    
    [Install]
    WantedBy=multi-user.target

    /etc/fstab

    storage.ip.address:/home/changeme/backup /home/backup nfs4  noauto,rw,hard,intr,rsize=8192,wsize=8192,timeo=14 0 0

    ~/.autorestic.yml

    version: 2
    
    locations:
      home:
        from: /home/changeme/
        to: remote
        options:
              backup:
                exclude:
                  - 'Dropbox/*'
                  - 'Dropbox*/*'
                  - '.cache'
                  - '.*CacheStorage.*'
                  - '.*CachedData.*'
                  - '.*Cache.*'
                  - '.var/app'
                  - '.cargo'
                  - '.ssh'
                  - '.rustup'
                exclude-file: /home/changeme/.gitignore
    backends:
      remote:
        type: local
        path: "/home/backup/"
        key: "changeme"
    December 8, 2023 03:25:21 PM GMT+01:00 * - permalink -
    QRCode
    - https://gist.github.com/theonlydoo/1ee4640ffe9555dd8d3a92e67c717d00
    restic backup
  • thumbnail
    Designing a Backup and Disaster Recovery Plan | by Elliot Graebert | May, 2022 | Medium

    via Olivier

    May 9, 2022 03:46:19 PM GMT+02:00 * - permalink -
    QRCode
    - https://medium.com/@elliotgraebert/designing-a-backup-and-disaster-recovery-plan-3fb045a47c62
    backup pra pca disaster sre
  • thumbnail
    lra/mackup: Keep your application settings in sync (OS X/Linux)

    Pas mal, ça complètera bien mon backup de dotfile dans un repository git privé 😅

    September 4, 2019 02:22:11 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/lra/mackup
    backup tool dotfiles
  • thumbnail
    restic/restic: Fast, secure, efficient backup program

    je vais essayer de remplacer dejadup par ce tool qui est bien plus light pour le CPU

    September 18, 2018 02:58:44 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/restic/restic
    backup
  • thumbnail
    Auto PostgreSQL backup script.
    September 22, 2017 10:43:41 AM GMT+02:00 * - permalink -
    QRCode
    - https://gist.github.com/matthewlehner/3091458
    postgre postgresql backup
  • thumbnail
    Cronopete - An Apple's Time Machine Clone For Linux - OSTechNix

    https://github.com/rastersoft/cronopete

    July 21, 2017 05:21:28 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.ostechnix.com/cronopete-apples-time-machine-clone-linux/
    backup
  • thumbnail
    gilbertchen/duplicacy: A new generation cloud backup tool

    via salim

    ça a l'air pas mal du tout ce tool

    June 13, 2017 05:52:47 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/gilbertchen/duplicacy
    backup
  • thumbnail
    GitHub - mhausenblas/burry.sh: Cloud Native Infrastructure BackUp & RecoveRY
    March 13, 2017 09:58:47 AM GMT+01:00 * - permalink -
    QRCode
    - https://github.com/mhausenblas/burry.sh
    backup zookeeper
  • thumbnail
    gaubert/gmvault: gmail backup software
    November 21, 2016 09:55:40 AM GMT+01:00 * - permalink -
    QRCode
    - https://github.com/gaubert/gmvault
    gmail backup tool
  • rclone - rsync for cloud storage

    via http://sebsauvage.net/links/?-M6fGg

    Sympa le principe, d'autant que y'a une chiée de services qui sont super chiants à utiliser en cli (hein, S3?!)

    August 20, 2016 01:17:18 PM GMT+02:00 * - permalink -
    QRCode
    - http://rclone.org/
    s3 backup
  • thumbnail
    datto/dattobd

    Un module kernel qui fait du snapshot incrémental permanent des BD linux, y'a bon !

    August 18, 2015 09:35:09 AM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/datto/dattobd
    sauvegarde backup
  • On a une sauvegarde de la base de données ? Elle a 6 mois, inutilisable | Le blog de Carl Chenet
    April 28, 2015 02:12:08 PM GMT+02:00 * - permalink -
    QRCode
    - http://carlchenet.com/2015/03/26/on-a-une-sauvegarde-de-la-base-de-donnees-elle-a-6-mois-inutilisable/
    tool backup
  • Backup using dd command in linux

    full hard disk copy

    dd if=/dev/hdx of=/dev/hdy
    dd if=/dev/hdx of=/path/to/image
    dd if=/dev/hdx | gzip > /path/to/image.gz

    Hdx could be hda, hdb etc. In the second example gzip is used to compress the image if it is really just a backup.

    Restore Backup of hard disk copy

    dd if=/path/to/image of=/dev/hdx

    gzip -dc /path/to/image.gz | dd of=/dev/hdx

    MBR backup

    In order to backup only the first few bytes containing the MBR and the partition table you can use dd as well.

    dd if=/dev/hdx of=/path/to/image count=1 bs=512

    MBR restore

    dd if=/path/to/image of=/dev/hdx

    September 13, 2014 05:55:30 PM GMT+02:00 * - permalink -
    QRCode
    - http://www.debianhelp.co.uk/ddcommand.htm
    dd backup restore
  • How to Back Up Terabytes of Databases - Brent Ozar Unlimited® by Brent Ozar Unlimited®

    "Building Terabyte Servers Means Starting with Backups First"
    indeed ... même si la philosophie en question n'est malheureusement pas généralisée

    August 30, 2014 12:04:54 PM GMT+02:00 * - permalink -
    QRCode
    - http://www.brentozar.com/archive/2014/07/back-terabytes-databases/
    backup sql
  • thumbnail
    Websync - Un gestionnaire pour gérer vos tâches Rsync « Korben

    via Noiz

    August 26, 2014 02:14:38 PM GMT+02:00 * - permalink -
    QRCode
    - http://korben.info/websync-gestionnaire-gerer-vos-taches-rsync.html
    rsync rsnapshot backup
  • Aptik – Gérez facilement les sauvegardes de vos sources, paquets, thèmes et icônes, sur Ubuntu et dérivés – La vache libre
    February 15, 2014 07:57:12 PM GMT+01:00 * - permalink -
    QRCode
    - http://la-vache-libre.org/aptik-gerez-facilement-les-sauvegardes-de-vos-sources-paquets-themes-et-icones-sur-ubuntu-et-derives/
    backup
  • thumbnail
    Redo Backup Bare Metal Restore Solution GUI Backup Open Source GPL Recovery

    a tester

    February 5, 2014 12:32:14 PM GMT+01:00 * - permalink -
    QRCode
    - http://redobackup.org/
    backup
  • thumbnail
    encryption - How to encrypt a file or directory in Linux? - Super User
    February 4, 2014 06:58:31 PM GMT+01:00 * - permalink -
    QRCode
    - http://superuser.com/questions/249497/how-to-encrypt-a-file-or-directory-in-linux
    gpg backup
  • script backup mysql

    c'était chiant à faire alors je le met là

    December 3, 2013 03:05:16 PM GMT+01:00 * - permalink -
    QRCode
    - https://arnaudb.net/paste/?e56e6fa784d6b0ab#L154Q7dyZMbcWgAvfjy0ub81/fJmbhXlN6VYy01XrZM=
    backup mysql tool linux
  • AutoMySQLBackup | Free software downloads at SourceForge.net

    Un script de backup opensource qu'il a l'air bien selon Victor :-)

    Moi j'utilisais plus : http://rimuhosting.com/howto/mysqlbackup.jsp
    A voir si y'e na un mieux que l'autre.

    December 2, 2013 11:33:57 AM GMT+01:00 * - permalink -
    QRCode
    - http://sourceforge.net/projects/automysqlbackup/
    sql backup
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation