Skip to content

Instantly share code, notes, and snippets.

@dubcl
dubcl / tf2_launch_options.txt
Last active August 8, 2021 19:12
tf2 launch options
-refresh 60 -heapsize 33554432 -high -noforcemaccel -noforcemparms -novid -nojoy -nosteamcontroller -softparticlesdefaultoff -reuse -nohltv -noipx -nod3d9ex -threads 4
@dubcl
dubcl / hpe-disk-controller-tool.md
Created February 22, 2021 01:31
Add HPE Debian repo
#!/bin/bash

DISTRO="buster"

# download the GPG key of the repository:
wget -q0 - http://downloads.linux.hpe.com/SDR/repo/mcp/GPG-KEY-mcp | apt-key add -

# create apt sources file for HP/Proliant repo
echo -e "deb http://downloads.linux.hpe.com/SDR/repo/mcp/ $DISTRO/current non-free" > /etc/apt/sources.list.d/proliant.sources.list
@dubcl
dubcl / upgrade-sudo-on-wheezy-20210126.md
Last active February 4, 2021 18:26
Actualizar sudo en wheezy

Les cuento como lo hice:

Creé una vm con wheezy i386 para poder compilar en limpio, luego se instala lo siguiente:

apt-get install devscripts libpam0g-dev libldap2-dev libsasl2-dev libselinux1-dev autoconf autotools-dev bison flex libaudit-dev

Descargar desde https://packages.debian.org/sid/sudo y descomprimir

@dubcl
dubcl / gcp-sa.md
Created January 18, 2021 16:29
configure service account
gcloud auth activate-service-account --key-file /tmp/backup-account.json
@dubcl
dubcl / innodb_force_recovery.txt
Created July 13, 2020 20:18
innodb force recovery
FROM: https://serverfault.com/questions/592793/mysql-crashed-and-wont-start-up
Ouch.
InnoDB: immediately after the mysqld startup, there may be
InnoDB: corruption in the InnoDB tablespace. Please refer to
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html
InnoDB: about forcing recovery.
Check the suggested webpage: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html.
@dubcl
dubcl / ssh-gpg.txt
Created July 4, 2020 15:48
How to enable SSH access using a GPG key for authentication
https://opensource.com/article/19/4/gpg-subkeys-ssh
How to enable SSH access using a GPG key for authentication
Learn how to eliminate SSH keys and use a GNU Privacy Guard (GPG) subkey instead.
24 Apr 2019 Brian "bex" Exelbierd (Red Hat) Feed 197
up
Team checklist and to dos
x
Subscribe now
@dubcl
dubcl / showswapapps.sh
Created July 2, 2020 20:02
Show swap apps
function showswap() {
find /proc -maxdepth 2 -path "/proc/[0-9]*/status" -readable -exec awk -v FS=":" '{process[$1]=$2;sub(/^[ \t]+/,"",process[$1]);} END {if(process["VmSwap"] && process["VmSwap"] != "0 kB") printf "%10s %-30s %20s\n",process["Pid"],process["Name"],process["VmSwap"]}' '{}' \; | awk '{print $(NF-1),$0}' | sort -h | cut -d " " -f2-
}
@dubcl
dubcl / listdir.c
Created June 8, 2020 20:43
List million files
/*
From: http://www.be-n.com/spw/you-can-list-a-million-files-in-a-directory-but-not-with-ls.html
*/
#define _GNU_SOURCE
#include <dirent.h> /* Defines DT_* constants */
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
@dubcl
dubcl / docker-fix-arch.md
Created April 13, 2020 20:19
fix docker service on archlinux

the problem

dockerd[53380]: failed to start daemon: Error initializing network controller

the fix

ip link add name docker0 type bridge
ip add add dev docker0 172.17.0.1/16 
systemctl start docker