Farewell fhchaos

Donnerstag, 06. Dezember 2012, 20:44 Uhr von Felix

In December 2007, fhchaos went live. The f stands for my name, the h for my friend Hans and the chaos for everything that happened: I am talking about a small virtual Debian GNU/Linux server.

For five years it ran and stored everything we threw at it: my personal homepage, websites of family and friends, an SSH proxy, various university projects, subversion and git repositories, experiments in Ruby and Python and, last but not least, the very site you are currently reading.

In the meanwhile, a lot has changed. For starters, I wrapped up my studies in Bamberg, moved to Cologne and started a new job (phew!). Moreover, both my hard- and software requirements have changed quite substantially over the years.
I need more memory. I need to be able to configure and install things at will. I do not want to check with someone else if my changes break any of the stuff I do not maintain.

Therefore, it is time to move on. Today, fhchaos will be switched off. So long, little buddy! Thanks for everything — especially the uptime.

Fehler bei der Installation von Mongrel

Freitag, 21. Dezember 2007, 20:15 Uhr von Felix

Mongrel, die erste Wahl zur Bereitstellung von Rails-Applikationen, lässt sich ganz einfach mit

gem install mongrel

installieren. Soweit so gut. Bei uns (Debian/GNU Linux) hat das leider nicht funktioniert. Genauer gesagt hat sich das benötigte Gem (ein Begriff aus der Ruby-Welt, gleichbedeutend mit Paket) „Fastthread“ zu Wort gemeldet:

ERROR: While executing gem ...(Gem::Installer::ExtensionBuildError)
ERROR: Failed to build gem native extension.

Des Rätsels Lösung: entgegen meiner Annahme waren zum Zeitpunkt der Übergabe des Servers durch den ISP nicht alle benötigten Pakete zur Kompilierung installiert. Mit folgendem Befehl lässt sich dies beheben:

apt-get install build-essential

Damit sollte die Installation im zweiten Anlauf problemlos über die Bühne gehen.