- 
		
Recent Posts
 Recent Comments
- systemd unit hardening followup followup | the world needs more puppet! on systemd unit hardening followup
 - systemd unit hardening followup | the world needs more puppet! on systemd unit hardening
 - Andreas on Dovecot: Apply sieve filter to existing emails
 - Feiko Nanninga on Short Tip: Install shellcheck on an outdated CentOS
 - Computerkid/Grayson Penland on Linux Short Tip: systemd-networkd and DNS servers
 
Archives
- February 2022
 - January 2022
 - August 2020
 - June 2020
 - January 2019
 - November 2016
 - August 2016
 - July 2016
 - June 2016
 - May 2016
 - April 2016
 - January 2016
 - December 2015
 - November 2015
 - October 2015
 - September 2015
 - August 2015
 - July 2015
 - June 2015
 - May 2015
 - April 2015
 - March 2015
 - February 2015
 - January 2015
 - December 2014
 - November 2014
 - October 2014
 - September 2014
 - August 2014
 - July 2014
 - June 2014
 - May 2014
 - March 2014
 - February 2014
 - December 2013
 - November 2013
 - October 2013
 - September 2013
 - August 2013
 - July 2013
 - June 2013
 - April 2013
 - March 2013
 - February 2013
 - January 2013
 - December 2012
 - November 2012
 - October 2012
 - September 2012
 - August 2012
 - July 2012
 - June 2012
 - May 2012
 - April 2012
 - March 2012
 - July 2011
 
Categories
Meta
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
							
		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