-
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: Linux
Linux Short Tip
Libvirt mit munin monitoren: Als erstes das libvirt Plugin besorgen: cd /tmp git clone http://honk.sigxcpu.org/git/munin-libvirt-plugins.git/ cd munin-libvirt-plugins make install ln -s /usr/share/munin/libvirt* /etc/munin/plugins/ Infos über Disk IO der VMs: for i in $(/usr/share/munin/plugins/diskstat_ suggest); do ln -s /usr/share/munin/plugins/diskstat_ /etc/munin/plugins/diskstat_$i; done … Continue reading
Posted in General, Linux, Short Tips
Leave a comment
Linux Short Tip
Gentoo Bug: nach einem gcc Update (4.5 auf 4.6.3) will das System weiterhin die alte (aber deinstallierte) Version von gcc nutzen. Dies kann man mit: gcc-config 1 ändern. Danach sollte man rebooten oder env-update && source /etc/profile ausführen. Nun nutzt … Continue reading
Posted in General, Linux, Short Tips
Leave a comment
Linux Short Tip
Domainliste parsen, NS Server rausfinden und als CSV speichern: for i in $(cat domains); do echo -n “$i;” >> domainliste.csv; echo $(dig NS $i +short) | while read line; do echo “$line;”>> domainliste.csv; done; done
Posted in General, Linux, Short Tips
Leave a comment
Linux Short Tip
Gnome2 unter Ubuntu >= 11.10 installieren: aptitude install gnome2-session gnome-shell einmal ausloggen und im Loginscreen auf das Zahnrad klicken, dort Gnome-Classic auswählen und wieder einloggen.
Posted in General, Linux, Short Tips
Leave a comment
Best of 29C3
Hier mal die Videos vom 29C3 die man nicht verpasst haben sollte: ESXi Beast Hashflooding based DOS V2 Fnord Show mit fefe und Frank Rieger Further Hacks Calypso Smart Meter Security Nightmares Hacker Jeopardy CCC Jahresrückblick Lightning Talks 1 Lightning … Continue reading
Posted in General, IT-Security, Linux, 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