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.

cowsay moo

Donnerstag, 10. November 2011, 14:00 Uhr von Felix

Today, I came across cowsay, another weird Linux command. So what does it do? Well, what do you think? Yep, it prints an ASCII cow:

The cowsay manpage documents some nifty options that allow to customize the eyes, the tongue or, lo and behold!, the whole cow. What an over-engineered easteregg.

Now back to the other tab.

ls/sl

Samstag, 19. September 2009, 16:00 Uhr von Felix

If you’re familiar with Linux, you probably know the ls command. It lists the content of a directory when executed. Sometimes, when in a hurry, you might mistype it and end up with sl.

A programmer named Toyoda Masashi created a program called sl – an easter egg. If you install it and execute „sl“ by accident, a funny ASCII art animation will be displayed in your terminal. Diesen Beitrag weiterlesen »

How to install Eclipse Galileo on your Ubuntu machine

Montag, 20. Juli 2009, 19:47 Uhr von Felix

The Ubuntu 9.04 packages contain only the outdated version 3.2 of the popular IDE Eclipse. If you want to install Galileo/3.5, the latest version, you will have to do it yourself. This will guide you through the necessary steps to install Eclipse on your Ubuntu machine (or any other Linux Desktop).

First, download the latest version of Eclipse to your desktop. I recommend to use Eclipse Classic (scroll down). While your computer is downloading the file, get yourself a cup of tea (or coffee).

When the download is finished, open a terminal and navigate to the opt directory, where optional software is to be installed.

cd /opt

This is were you want to unpack the downloaded tarball:

sudo mv ~/Desktop/eclipse-SDK-3.5-linux-gtk-x86_64.tar.gz /opt
sudo tar xfvz eclipse-SDK-3.5-linux-gtk-x86_64.tar.gz
# we do not need the tarball anymore
sudo rm eclipse-SDK-3.5-linux-gtk-x86_64.tar.gz

Please note that if you did not download the file to your Desktop directory or want to use another version of Eclipse, e.g. 32bit, you will have to modify the lines above. Use tab to save yourself some keystrokes.

Okay, now let’s run it with root rights. Why root rights? Because we want to install some plugins.

cd eclipse
sudo ./eclipse

Eclipse will ask for a workspace. The default should be fine. If Eclipse started successfully, click Help and then Install New Software to install your favourite plugins. I usually install C/C++ Development Tools, Ruby Development Tools as well as PHP Development Tools from the default update site (for 3.5 it is called Galileo) and PyDev (Python), Subclipse (Subversion) and TeXlipse (LaTeX). Right-click on the aforementioned links to copy the URL of the update site.

When you finished downloading and installing plugins, close Eclipse and execute the following command:

sudo ln -s /opt/eclipse/eclipse /usr/local/bin/eclipse

Now you can create a new starter and point it to eclipse. Click it, to start Eclipse. Tada! You are almost finished.

You might want to delete root’s workspace using the following command:

sudo rm --recursive --force /root/workspace

Now, you are finished. Congratulations! Fasten your seatbelt and start coding.