Relocation Now!

This weekend I have been very busy with preparing our relocation to Bad Oldesloe. It feels good to know we are going to leave this way too small apartment behind. And I am so happy to finally see Sarah, Erik and Einar again.

Sad to say Sarah had a spinal disc herniation shortly after going to Nuremberg. This old apartment we are leaving behind is on the fourth floor without an elevator and so it was impossible for Sarah to come back. Thus I haven’t seen her and the boys since they left on the 18th of October. It frequently made me feel so downfallen not to have them around me.

I am relieved to know it’s almost overcome and for the next days I am going to move things from this place to our new apartment. And when that’s done I am going to pick up my family from Nuremberg and take them to our new home. And we are going to take good care of Sarah’s injury.

Let me entertain you (How to correctly choose a MMORPG)

Okay, in fact I really don’t know about your preferences. But if you enjoy browser and client based MMORPG (Massively Multiplayer Online Role-Playing Games) I’d like you to have a look at these:

Drachenkrieg is a fantasy MMORPG based in the world of Feo. Once in Feo you take part in the everlasting fight between good and evil on the sides of the humans or the monstrous magmars. There are regularly epic battles with 1000+ players organized by the team behind Drachenkrieg. Besides the PvP (Player versus Player) battles there is lots of good PvE (Player versus Environment) content in this game.

TimeZero is a tactical and at the same time action loaded MMORPG in a post apocalyptical world. You are given the ability to specialize your character by attributes, items and professions and form an individual habbitant of this nightmarish world. There is a great amount of PvE content throughout the whole game and when your character gets better it is so incredible thrilling to fight PvP against others. Come and get some. XD

And if you might wonder about me playing games again besides my family – it’s quite easy to explain. I sometimes play them at work. :þ

I now enjoy to work as a sysadmin for Astrum Online Entertainment, the company running these games.

Feuer in der Wahmstraße Lübeck

This morning at 5:35 I was brutally snatched from the never-never land by sirens and noticed this burnt smell. I instinctively thought: what the fuck, is it the new ugly shopping mall burning? No, it wasn’t. It was a house down the road. I am too tired right now, just going to put the videos in here and fall asleep again.

[FLOWPLAYER=feuer_wahmstrasse_1.flv,512,384][FLOWPLAYER=feuer_wahmstrasse_2.flv,512,384][FLOWPLAYER=feuer_wahmstrasse_3.flv,512,384]

The use of the video footage is not allowed without my written permission.

VMware Workstation and Linux 2.6.27

Today I received a comment from Kang about a fix for VMware Workstation 5.5 and Linux 2.6.27.

You get the file here and of course at his place, too.

It works like any other vmware-any-any-update:

wget http://uruz.org/files/vmware-update-2.6.27-5.5.7.tar.gz
tar xvzf vmware-update-2.6.27-5.5.7.tar.gz
cd vmware-update-2.6.27-5.5.7/
./runme.pl

Good luck.

edit: The archives were updated. Thank you, Kang.

I’m gonna leave you

I’d like you to know I’ve quit my contract with my current employer. I’m gonna leave at the end of this month. I’ve been working there for 3 years now and I’ve been doing all the stuff that matters like server administration and embedded linux development. I guess I was pretty good somehow. No one was really amused when I announced my dismissal. I have had some helluva fun and some nice teammates there and the work was frequently challenging. But no regrets, it’s time to move on. I’d like to hereby thank the staff of Solcon Systemtechnik GmbH for the past 3 years of cooperation.

Building another fly rod part 1

You might already have seen the short blog entry for my first fly rod building project. So, on Friday I suddenly felt like I’d have to act at once and place an order for some rod building material. There are several reasons. One reason is that I am all alone at home from the 18th to the 26th of this month. Sarah, Erik and Einar are going to Nuremberg. Being busy kills time. Another reason is pure consuming desire I just wanted to do something besides the usual things. Yes, recently I once again enjoy sitting on the table in the evening doing handicraft work. In short it means less computer related occupation at home – I spend enough time at work in front of my screen.

I’ll blog in detail the steps of building the new rod when all the parts have arrived.

VMware Workstation and Linux 2.6.26

I had to update my kernel to something 2.6.26, so VMware was broken again. I tried to fix it with the previously working fix from here, but that didn’t work. I had a look at the recently released vmware-any-any updates. No, these didn’t work for me either. When I tried to start a virtual machine I got a message like

Version mismatch with vmmon module: expecting 138.0, got 168.0

Yes, I know – using VMware Workstation 5.5 is pretty stupid and doesn’t make things easy – nonetheless no explanations now. Thus I extracted the vmmon.tar file and edited vmmon-only/include/iocontrols.h and in line 48 there is

#define VMMON_VERSION           (168 << 16 | 0)

I fixed this by modifying the version value from 168 to 138, saved the changes and once again ran the runme.pl script. Okay that helped. Alright. No, it obviously didn’t help.

Unable to change virtual machine power state: Cannot find a valid peer process to connect to.

GRMBL. Now that’s stupid. So I lurked around every corner and found this vmware-any-any-update117 version which finally helped me out.

HTH

P.S. Of course I consider dropping VMware for some other solution…asap.

Edit: For linux 2.6.27 just have a look at this page!

FlashEmbedded Family

On Sunday we have been on a visit to my older brother and his family. Nerdy as I am I had our Sony Handycam with me on the trip and arrived back at home with plenty of new video footage. So I just wanted to make some videos available and digitalized and converted the dv source material from the camcorder with dvgrab and ffmpeg.

So this is some kind of a minimal HowTo, hope this helps someone.

If you are like me, you don’t like the idea to rely on 3rd party websites like younameit.xyz. There are a few good reasons to keep the video on your site – you have the physical control and you don’t need to accept confusing licence agreements. So here we go!

First I piped the output of dvgrab directly from the firewire to ffmpeg. This deinterlaced, converted and scaled the dv file to something more useful for a web page. I think that the following options are fine, feel free to change them and of course make use of man dvgrab and man ffmpeg.

dvgrab -format dv1 – | ffmpeg -deinterlace -f dv -i – -f flv -vcodec flv -s qvga -aspect 1.333 -qscale 3.5 -acodec libmp3lame -ab 32k -ar 22050 example.flv

Next I uploaded the example.flv file into the root directory of the domain. I use the open-source FlowPlayer Flash applet to actually embed the FLV video in my web page. I had to get a copy of the flowplayer.swf and flashembed.js from their page and copied the files to the root directory as well.

And finally I added the following lines to the html page.

<!– include flashembed –>
<script src=”flashembed.js”></script>

<!– this DIV is where your Flowplayer will be placed. –>
<div id=”videodiv” style=”width:640px;height:503px”></div>

<script>
// place Flowplayer to our DIV
flashembed(“videodiv”, “FlowPlayer.swf”, {config: {

// Flowplayer configuration as comma separated list
videoFile: ‘example.flv’,
initialScale: ’scale’

}});
</script>

That’s it. You should now have your video embedded in your page.

Something summer 2008

August is almost gone. It was some kind of wet and sticky. Anyways, my achieved aims this month were:

  • not to eat less but to lose some weight
  • not to get sunburned
  • to upgrade some more machines nagios, snort and stuff
  • to spend less then 30 Euro a month for books at amazon
  • to be a good partner and father
  • to keep straight on and focused on the world domination

Is something else going to happen soon? There are still a few days left. Stay tuned!

Finnish emotions

While surfing the net in my lunch break I’ve found this picture. It is so incredible funny, I almost gave a sign of life to my team mates.