Skip to content

Instantly share code, notes, and snippets.

@aaron5523
aaron5523 / Synology-Diskstation-Git.md
Created January 16, 2022 18:35 — forked from walkerjeffd/Synology-Diskstation-Git.md
Instructions for setting up git server on Synology Diskstation

Configure Synology NAS as Git Server

Instructions for setting up a git server on a Synology NAS with Diskstation. Specifically, I am using a DS414 with DSM 5.0.

Set Up User and Folder

  • Create user gituser via Diskstation interface (with File Station and WebDAV privilages)
  • Add new shared folder called git (located at /volume1/git) with read/write access for gituser and admin. This folder will hold all the repos.
  • Install Git Server package via Diskstation
Thu Oct 1 12:12:32 UTC 2020
@aaron5523
aaron5523 / ansible-summary.md
Created February 23, 2018 13:47 — forked from andreicristianpetcu/ansible-summary.md
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

@aaron5523
aaron5523 / swapUsage.sh
Created June 27, 2016 12:41
Bash command to see how much swap each process is using
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r