buch

Zitat des Tages aus „Der wüste Planet“

Written by  on Juli 22, 2010

"Der wüste Planet" ist eine Parodie auf "Der Wüstenplanet" von Frank Herbert. Im Folgenden wird die Parodie auf die Litanei gegen die Furcht zitiert:

Er rief sich die Boni-Makkaroni-Litanei gegen Spaß und Übermut ins Gedächtnis zurück. Ich brauche keinen Spaß. Wer Spaß hat, hat nichts anderes. Spaß ist für Kinder, Kunden und Bedienstete. Ich werde jeden Spaß vergessen. Ich mag ihn nicht. Lustig sein ist blöde. Ich werde vergessen, wie man lustig sein kann. Und was dann übrig bleibt ist nichts – und mein Wille, es den anderen zu zeigen. Verdammt, bin ich gut.

Defragmentierung

Written by  on Mai 14, 2010

Wie ja bereits aus einigen Artikeln in Computerzeitschriften bekannt ist, bringt heutzutage eine Defragmentierung von Festplatten nichts mehr. Heute bin ich einmal mehr über eine Bestätigung für diese Aussage im Buch The Practice of System and Network Administration gestossen.

Dabei heißt es:

This is not worthwile on modern operating systems. Modern systems are much better at not creating fragmented files in the first place. Hard drive performance is much less affected by occasional fragments. Defragmenting a disk puts it a huge risk owing to potential bugs in the software and problems that can come from power outages while critical writes are beeing performed.

Trotzdem hält sich der Glaube an deutlich schnellere Computer durch regelmäßige Defragmentierung hartnäckig.

Zitat des Tages

Written by  on Mai 6, 2010

Keep Up with the State of the Art
Pornographic sites in particular are always pushing the limits of what can be done technically, as well as pushing legal limits. Look under the covers, so to seak, and view page source of HTML and JavaScript on porn sites.

Web Performance Tuning

Zitat des Tages

Written by  on Mai 3, 2010

Schon zum zweiten mal dabei – aber jetzt ist die Quelle wieder aufgetaucht:

The longer I work on websites, the more surprised I am at the creativety of complex systems in finding ways to fail.

Web Performance Tuning

Zitat des Tages

Written by  on Mai 1, 2010

How Much Memory Do You Nee?
The answer is "more."

Web Performance Tuning

Zitat des Tages

Written by  on April 28, 2010

The point of this discussion is to understand that although high availability is a necessity, it certainly won't save you from ignorance or idiocy.

Theo Schlossnagle – Scalable Internet Architectures

Zitat des Tages

Written by  on April 24, 2010

Have you ever noticed that the system administrator's job seems to have two states applied to it? That they're either ignored or hated.

Zitiert aus Linux Clustering: Building and Maintaining Linux Clusters

Zitat des Tages

Written by  on April 7, 2010

System administrators like things automated. Ideally, everything would run itself, and all our time would be spent reading our favorite websites and RSS feeds.
Theo Schlossnagle – Scalable Internet Architectures

Zitat des Tages

Written by  on März 12, 2010

System administration deals with the real world, and the real world is full of chaos.

Zeitmanagement für Systemadministratoren

how to fork

Written by  on Oktober 31, 2008

Ich glaub ich hab gerade meinen ersten Prozess unter C geforkt. Auch wenn der Beispielcode nichts sinnvolles tut 😉

Die simple Frage war, was hier vom Parent ausgegeben wird. Recht offensichtlich (und durch ausprobieren rauszufinden ist die Lösung wohl 5!

#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>

int value = 5;
int main()
{
pid_t pid;
    pid = fork();
    if (pid == 0) { /* child process */
        value +=15;
    }
    else if (pid > 0) { /* parent process */
        wait (NULL);
        printf("PARENT: value = %d",value);
    }
}

Operating System Concepts, 7th Edition

Operating System Concepts, 8th Edition