Nachdem mir mein System nun eine Weile gedient hat, war es an der Zeit etwas RAM nachzustopfen, da 32 GB für einen VM Host bei meiner Nutzung durchaus etwas schmal werden kann. Schon irgendwie witzig, wie die kleinen VMs bei weniger Memory-Over-commitment nun viel besser laufen.
Schlagwort: server
TCP Verbindungen anzeigen
Das hier ist ein kleiner Schnipsel Code (bash), der mir am Server schon oft geholfen hat; Die Ausgabe ist die Anzeige der TCP Verbindungen zu IPs und deren Anzahl: netstat -atun | awk ‚{print $5}‘ | cut -d: -f1 | tail -n+3 | sed -e ‚/^$/d‘ |sort | uniq -c | sort -n -r Nichts wirklich Weltbewegendes, aber […]
Network too intelligent
Lately, working with Windows 7 I noticed a cruel transmission rate of 200 B/s while fetching a file from a local server over a highspeed connection. No, I didn’t have a typing error in there, it’s 200 Bytes per second; that’s even slower than GPRS! I guess we agree on the fact that there’s something wrong on the […]
Suspect things going on
It’s not a secret that I tend to dislike apple for the way they raped BSD to get it useable for the masses, but what they do to me from the programmers point of view, is insane. Let’s start out with a simple MAMP installation (Mac, Apache, MySQL and PHP) and a plain system() call in php: system(„kill […]
Small things with a huge effect
Every time computers are running smooth and things are looking fine and you think of looking at the items at the top of your Todo-list, things that you should have done weeks ago but couldn’t because of things preventing you, another one of such blockers kicks in: something does not work. But IT work can be a bitch […]
Der Schizophrene DNS
Heute möchte ich euch ein kleines, praktisches Feature von Nameservern am Beispiel BIND vorstellen, das auf den ersten Blick vielleicht ein bisschen seltsam aussieht, jedoch irre praktisch ist: BIND kann je nach Anfrage verschiedene IPs für den selben Namen liefern.