This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
watch tc -s qdisc ls dev $dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# modprobe zram | |
# echo lz4 > /sys/block/zram0/comp_algorithm | |
# echo 10G > /sys/block/zram0/disksize | |
# zpool add tanka log /dev/zram0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git merge v1.0 --no-commit --no-ff | |
rm .git/MERGE_HEAD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
if ( $ARGV[0] ) { | |
if ( $ARGV[0] eq 'autoconf' ) { | |
if ( -r '/bin/netstat') { | |
print "yes\n"; | |
exit 0; | |
} | |
print "no\n"; |