Category Archives: General

Nerdig ist…

… arbeiten bei Hetzner :) musste mal gesagt werden (wir suchen auch noch Leute)

Posted in General, Nerd Stuff | Leave a comment

Linux Short Tips und so

1. Der Windows Netcat Port hat mehr Features als alle Windows Version (-X, Verbindungen offen halten) 2. Cryptcat ist netcat+cryptsupport(also keine faulen Ausreden mehr ssh nutzen zu müssen, danke Nadine) 3. lvcreate -L64M -s -n snapshot-name /dev/vg-name/lv-name; dd if=/dev/vg-name/snapshot-name | … Continue reading

Posted in General, Linux, Short Tips | Leave a comment

Linux Short Tip

mdadm Sync Speed erhöhen: echo 2000000000 > /proc/sys/dev/raid/speed_limit_max echo 200000000 > /proc/sys/dev/raid/speed_limit_min sync beobachten: watch cat /proc/mdstat

Posted in General, Linux, Short Tips | Leave a comment

Linux Short Tip

Mailbenachrichtigung bei SSH Login: Folgenden Einzieler in die /etc/profile einfügen: echo ‘ALERT – Root Shell Access ($(HOSTNAME)) on:’ $(date) $(who) | mail -s “Alert: Access from $(who | cut -d'(‘ -f2 | cut -d’)’ -f1)” meine@mail.de Wichtig hier: HOSTNAME in … Continue reading

Posted in General, IT-Security, Linux, Short Tips | Leave a comment

Linux _nicht_ganz_so_ Short Tip

Aufgabenstellung: Endlosen Datenstream verschlüsseln und über das Netzwerk verschicken. Lösung generisch: tail /irgendeine-datei -f | openssl aes-256-cbc -S $(openssl rand -hex 12 > salt; cat salt) -e -k $(openssl rand -hex 12 > static; cat static) -a | nc6 -l -p … Continue reading

Posted in General, Linux, Short Tips | 2 Comments

Linux Short Tip

KVM VM beim Systemstart starten virsh autostart tada, danach wird die VM bei jedem Start des Hosts gestartet.

Posted in General, Linux, Short Tips | Leave a comment

100. Post !!!!!11elf

Nun auch wieder mit SSL :)

Posted in General | Leave a comment

Best of Assi TV

“Im Ausland bist du auch Ausländer” – Sowas kann man nicht mehr toppen. Fazit daraus: Nie mehr vor 17Uhr Feierabend damit man auf jedenfall das Assi TV verpasst.

Posted in General | Leave a comment

Dualstack im Blog und auf bastelfreak.de

Der Blog und bastelfreak.de ( und tim-meusel.de) laufen nun wieder im Dualstack (IPv4 und IPv6 Support). Ebenfalls der Mailserver läuft wieder mit IPv6.

Posted in General | Leave a comment

Linux Short Tip

wget http://www.python.org/ftp/python/2.3.7/Python-2.3.7.tgz gunzip Python-2.3.7.tgz tar xfv Python-2.3.7.tar cd Python-2.3.7 ./configure make make install wget http://downloads.sourceforge.net/project/decompyle/decompyle/Decompyle%202/decompyle_2.3.2.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fdecompyle%2F&ts=1355840859&use_mirror=garr gunzip decompyle_2.3.2.tar.gz tar xfv decompyle_2.3.2 cd decompyle_2.3.2 python2.3 setup.py install decompyle *FILE* > *OUTPUTFILE* Für Python 2.7 nutzt man am besten uncompyle.

Posted in General, Linux, Short Tips | Leave a comment