Skip to content

Instantly share code, notes, and snippets.

@pbt001
pbt001 / lapdogbackup.md
Created June 22, 2020 21:23 — forked from alyssacohen/lapdogbackup.md
My laptop backup with restic

My Laptop Backup with restic

Some notes about setting up automatic backup on IBM Cloud Object Storage.

Inspired by an article about making free backups to the cloud and this one about automating the process with systemd, I decided to set up automatic backup over the internet of my mule laptop "lapdog". It's an Arch Linux powered machine I mostly use to kill time, so it's not a big deal if for some reason I screw things up. Something went wrong when I followed that guide, so I decided to retrace all the steps following restic and aws documentation instead of those articles. And here is my version of the guide (hope it helps someone) IBM COS basically let you create an Amazon S3 bucket with up to 25GB of cloud space to load your backups for free!:grin: Too small for a full system backup, but enough for d

@pbt001
pbt001 / 01-fedora.sh
Created June 22, 2020 21:32 — forked from azmelanar/01-fedora.sh
Fedora Kickstart
#!/usr/bin/env bash
# GENERAL
## Configurate Swap
echo -e "\n
# Configurate swap
vm.swappiness = 10
vm.vfs_cache_pressure = 50" >> /usr/lib/sysctl.d/00-system.conf
@pbt001
pbt001 / .restic.excludes
Created June 22, 2020 21:32 — forked from bradfa/.restic.excludes
Restic Notes
# Exclude poky default build dir
git/poky/build
# Exclude our sstate, downloads, and build output dirs
mr-oe-*/sstate-cache
mr-oe-*/downloads
mr-oe-*/*-oe-build/tmp-*
git/poky-wrap/titan
git/poky-wrap/downloads
git/poky-wrap/sstate-cache
# Exclude virt-manager and downloads dirs
@pbt001
pbt001 / README.md
Created June 22, 2020 21:33 — forked from samber/README.md
Time-machine with restic

Time-machine with restic

Features

  • Differential backups
  • Deduplication
  • Encrypted ❤️
  • Backup cleaning
  • Less than 1€ a month
@pbt001
pbt001 / Dockerfile
Created June 22, 2020 21:33 — forked from rhuss/Dockerfile
Restic + Rclone for ARM
FROM golang:1.13.10-buster AS builder
ARG VERSION_RESTIC=v0.9.6
ARG VERSION_RCLONE=v1.51.0
WORKDIR /opt
RUN apt-get update \
&& apt-get install -y \
git \
@pbt001
pbt001 / install_restic_centos.sh
Created June 22, 2020 21:33 — forked from mttjohnson/install_restic_centos.sh
Install Restic on CentOS
# Dependencies
yum install curl jq git golang
# Optional Yum Repo for Newer Go Version
# https://go-repo.io/
rpm --import https://mirror.go-repo.io/centos/RPM-GPG-KEY-GO-REPO
curl -s https://mirror.go-repo.io/centos/go-repo.repo | tee /etc/yum.repos.d/go-repo.repo
yum install golang
# Define Variables
@pbt001
pbt001 / restic_backup.sh
Created June 22, 2020 21:33 — forked from kennethso168/restic_backup.sh
My Backup Solution
#!/bin/bash
# Location of your restic repo
export RESTIC_REPOSITORY=/run/media/kenneth/MyBook/restic
# Password of the restic repo
# Use a keyring to store the password so it isn't stored in plaintext on disk
# Install python-keyring (Arch) to use this command
export RESTIC_PASSWORD=`keyring get restic MyBook`
if ! restic snapshots
@pbt001
pbt001 / restic-backup-daily.sh
Created June 22, 2020 21:33 — forked from MatthewVance/restic-backup-daily.sh
Restic daily and hourly backup scripts with systemd timers.
#!/bin/bash
#: Title : restic
#: Date : July 15 2018
#: Author : Matt Vance
#: Version : 1.1
#: Description : Script to fully sytem backlup
#: License : MIT License (MIT)
# Copyright (C) 2019 Matthew Vance
@pbt001
pbt001 / restic-stats.sh
Created June 22, 2020 21:34 — forked from MatthewVance/restic-stats.sh
A script to return various stats about a Restic repo.
#!/bin/bash
#: Title : restic stats
#: Date : October 14, 2018
#: Author : Matt Vance
#: Version : 1.0
#: Description : Script to fully sytem backlup
#: License : MIT License (MIT)
# Copyright (C) 2018 Matthew Vance
@pbt001
pbt001 / Caddyfile
Created June 22, 2020 21:34 — forked from MatthewVance/Caddyfile
Caddy config (Caddyfile) and systemd service to reverse proxy Restic REST server running via Rclone.
bind 192.168.1.106:8889
tls /etc/caddy/ssl/host_name-bundle.pem /etc/caddy/ssl/end_device-key.pem {
protocols tls1.2 tls1.3
}
# Reverse proxy to rclone restic rest service
proxy / localhost:8080 {
# health_check /
transparent
max_conns 1024