Skip to content

Instantly share code, notes, and snippets.

View levifig's full-sized avatar
👀

Levi Figueira levifig

👀
View GitHub Profile
@levifig
levifig / proxmox_lxc_nfs_server.md
Created September 21, 2018 06:38 — forked from rwenz3l/proxmox_lxc_nfs_server.md
Install a NFS Server inside a LXC Container on Proxmox 5.1

Installing NFS inside LXC Container on Proxmox 5.1

Host Setup:

Create LXC Container as usual, but do not start it yet.

# Install NFS-Kernel on Host
apt install nfs-kernel-server
@levifig
levifig / rclone_backup.sh
Last active July 30, 2021 00:11 — forked from tdtgit/rclone_backup.sh
Rclone VPS Backup Script
#!/bin/bash
#v=1.1
TIMESTAMP=$(date +"%F-%H-%M")
SECONDS=0
BACKUP_DIR="/root/backup/$TIMESTAMP"
MYSQL=/usr/bin/mysql
MYSQL_USER=root
MYSQL_PASSWORD=YOURMYSQLPASSWORDHERE
MYSQLDUMP=/usr/bin/mysqldump