Warum Windows und MacOSX ewig ein Seppelbetriebssystem bleiben werden

Date June 4, 2009

Fass ich mich mal kurz
Punkt 1:
aptitude install
Display all 33881 possibilities? (y or n)
Punkt 2:
Wurde mir mal wieder neulich klar als ich einen armen, hilflosen Apple User sah, wie er verzweifelt versuchte eine ext3 (oder auch ext2) Partition unter Leopard oder Snow Leopard oder wie sich der Rotz auch schimpft zu mounten.
Da wird dann wild im [...]

pidgin crashes

Date May 10, 2009

Hi, I don’t know what has changed in my setup by pidgin started crashing when logging in to a jabber
http://developer.pidgin.im/ticket/8830
Unter Debian/sid hatte ich das gleiche Problem. Da ich pidgin eigentlich primaer fuer icq nutze und psi fuer jabber, brauchte ich nur die Jabber Accounts bei pidgin zu dekativieren und icq ging wieder.
Also einfach mal pidgin [...]

Debian/Lenny auf Poweredge 1950 und laut Prego auch 2950

Date April 16, 2009

https://wiki.gwdg.de/index.php/Debian_Lenny_auf_Poweredge_1950_oder_2950
Da stehts und wer es noch besser weiss solls noch besser schreiben liebe Kinder.
Und haette der Prego mal sein KVM Projekt mit nen Video belegt haette ich das schon viel frueher gut gefunden.
Und morgen gehts nach Prag…yeah.

Hardware sucht OS

Date April 1, 2009

Mag Deine Hardware Debian?

Take me back

Date March 12, 2009

snapshot.debian.net

deb http://snapshot.debian.net/archive/YYYY/MM/DD/debian unstable main contrib non-free

Braucht man zwar selten oder nie, aber allein schon die Moeglichkeit ist gut.

iotop

Date March 10, 2009

iotop

Linux has always been able to show how much I/O was going on (the bi and bo columns of the vmstat 1 command).
Iotop is a Python program with a top like UI used to show of behalf of which process is the I/O going on. It requires Python ≥ 2.5 and a Linux kernel ≥ [...]

watch me Baby

Date March 2, 2009

iwatch ist…
iWatch is a realtime filesystem monitoring program. Its purpose is to monitor any changes in a specific directory or file and send email notification immediately after the change. This can be very useful to watch a sensible file or directory against any changes, like files /etc/passwd,/etc/shadow or directory /bin or to monitor the root [...]

tab completion

Date February 18, 2009

ln -s /proc/self/fd /dev/fd

Debian lenny

Date February 16, 2009

Ich fass mich mal kurz:

Beim upgrade von lenny zu etch am besten alle nfs mounts vorher umounten.
Wer cacti benutzt muss eventuell noch die Version der rrdtools anpassen damit es wieder richtig laeuft.
Was nicht wieder lief waren die OMSA tools von Dell, muss man sich wohl doch ein bisschen mehr Zeit fuer nehmen.
Es gab noch ein [...]

Lenny

Date February 12, 2009

Warum ist alles so langsam?

Date January 29, 2009

iftop – display bandwidth usage on an interface by host
atop: an ASCII full-screen performance monitor
aptitude install atop iftop
Nuetzliche kleine Helfer.

Debian Asus 5PQ

Date December 23, 2008

Beim Asus 5PQ unter Debian/sid mit kernel 2.6.26 geht jetzt auch das IDE DVD Laufwerk…endlich.

lastfm via shell

Date December 12, 2008

aptitude install shell-fm
shell-fm lastfm://globaltags/ebm
via Appleberatungszentrum

Pen

Date November 7, 2008

Pen ist ein sehr einfacher loadbalancer fuer tcp…
This is pen, a load balancer for “simple” tcp based protocols such as http or smtp. It allows several servers to appear as one to the outside and automatically detects servers that are down and distributes clients among the available servers. This gives high availability and scalable performance.
Syntax [...]

Weil ich das immer vergesse

Date October 21, 2008

#!/bin/bash
## Version 0.1
#$1 = key
if [ $# -lt 1 ]; then
echo “usage: neuerkey key”
exit 1
else
gpg –keyserver subkeys.pgp.net –recv-keys $1
gpg –armor –export $1 | apt-key add -
echo “Alles erledigt”
echo
fi
exit 0