Skip to content

Instantly share code, notes, and snippets.

View NerdyNicholas's full-sized avatar

Nick Witherspoon NerdyNicholas

  • Omnyon
  • Pasadena, MD
View GitHub Profile
@NerdyNicholas
NerdyNicholas / ceph-commands.txt
Created October 30, 2020 18:15 — forked from pertoft/ceph-commands.txt
Ceph command cheatsheet
ceph -w
ceph health detail
ceph osd df
ceph osd find
ceph osd blocked-by
ceph osd pool ls detail
ceph osd pool get rbd all
ceph pg dump | grep pgid
ceph pg pgid
@NerdyNicholas
NerdyNicholas / meltdown-spectre-linux.yml
Created November 27, 2018 14:19 — forked from 5car1z/meltdown-spectre-linux.yml
Meltdown and Spectre Kernel Upgrade Packages for Ansible
# https://meltdownattack.com
- name: Patch Linux systems against Meltdown and Spectre
hosts: "{{ target_hosts | default('all') }}"
become: yes
vars:
reboot_after_update: yes
packages:
# https://access.redhat.com/security/vulnerabilities/speculativeexecution
@NerdyNicholas
NerdyNicholas / ansible-summary.md
Created November 6, 2018 12:09 — 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

@NerdyNicholas
NerdyNicholas / hfsc-shape.sh
Created January 11, 2018 17:36 — forked from bradoaks/hfsc-shape.sh
HFSC - linux traffic shaping's best kept secret
#!/bin/bash
# As the "bufferbloat" folks have recently re-discovered and/or more widely
# publicized, congestion avoidance algorithms (such as those found in TCP) do
# a great job of allowing network endpoints to negotiate transfer rates that
# maximize a link's bandwidth usage without unduly penalizing any particular
# stream. This allows bulk transfer streams to use the maximum available
# bandwidth without affecting the latency of non-bulk (e.g. interactive)
# streams.