Skip to content

Instantly share code, notes, and snippets.

View RubenKelevra's full-sized avatar

@RubenKelevra RubenKelevra

  • Deutschland, NRW
View GitHub Profile
[ -z "$1" ] && (echo "supply a hostname!") && exit 1
hostname="$1"
extrarepos='
[archlinuxfr]
SigLevel = Optional TrustAll
Server = http://repo.archlinux.fr/$arch
[repo-ck]
Server = http://repo-ck.com/$arch
@RubenKelevra
RubenKelevra / SCTP Conntrack missing ERROR
Last active June 27, 2016 07:38
Linux kernel complains about missing SCTP-Module for Conntracking...
conntrack: generic helper won't handle protocol 132. Please consider loading the specific helper module.
Fixing with
echo "ip_conntrack_proto_sctp" > /etc/modules-load.d/sctp.conf
modprobe ip_conntrack_proto_sctp
@RubenKelevra
RubenKelevra / Qdisc statistics
Created June 27, 2016 07:41
Qdisc statistics
watch tc -s qdisc ls dev $dev
@RubenKelevra
RubenKelevra / zfs zram log device
Created July 6, 2016 11:06
highly unsafe! ;)
# modprobe zram
# echo lz4 > /sys/block/zram0/comp_algorithm
# echo 10G > /sys/block/zram0/disksize
# zpool add tanka log /dev/zram0
for i in 1 2 3 4 5; do
pool_mnt='/tanka /sftponly/*/tanka'
pool_name='tanka'
handle_count="$(lsof $pool_mnt | grep -v ' cwd ' | grep -v ^COMMAND | wc -l)"
if [ "$handle_count" -ne 0 ]; then
rm -f /tmp/spindown_harddrives.marker*
exit 0
git merge v1.0 --no-commit --no-ff
rm .git/MERGE_HEAD
# Maintainer: Grégoire Seux <[email protected]>
# Contributor: Dean Galvin <[email protected]>
_pkgname="home-assistant"
pkgname="python-home-assistant"
pkgdesc='Home Assistant is an open-source home automation platform running on Python 3'
pkgver=0.24.1
pkgrel=1
url="https://home-assistant.io/"
license=('MIT')
arch=('any')
@RubenKelevra
RubenKelevra / reboot_on_kernel_updates.sh
Last active July 29, 2016 09:27
CentOS reboot on kernel updates
#!/bin/bash
LAST_KERNEL=$(rpm -q --last kernel | perl -pe 's/^kernel-(\S+).*/$1/' | head -1)
CURRENT_KERNEL=$(uname -r)
if [ "$LAST_KERNEL" != "$CURRENT_KERNEL" ]; then
logger 'automatic reboot by yum-daily in 10 seconds'
sleep 10
sync
systemctl reboot&
fi
@RubenKelevra
RubenKelevra / start_horst.sh
Created July 28, 2016 22:12
Start/Stop Horst
sudo systemctl mask NetworkManager
sudo systemctl stop NetworkManager
sudo ip link set dev wlp3s0 down
sudo iw dev wlp3s0 del
sudo iw phy phy0 interface add mon0 type monitor
sudo horst -i mon0
sudo iw dev mon0 del
sudo iw phy phy0 interface add wlp3s0 type managed
sudo ip link set dev wlp3s0 up
sudo systemctl unmask NetworkManager
@RubenKelevra
RubenKelevra / udp-statistics
Last active April 7, 2022 21:02
Munin-Plugin
#!/usr/bin/perl -w
if ( $ARGV[0] ) {
if ( $ARGV[0] eq 'autoconf' ) {
if ( -r '/bin/netstat') {
print "yes\n";
exit 0;
}
print "no\n";