Decrypt shell commands

You may know this situation: You have seen a shell command, looked in the man page but you are no really sure what it does? It solution to this problem is quite easy: http://explainshell.com/ The best thing is that the source code is released under GPL and can be found at GitHub

September 5, 2013 · 1 min · Christian Gmeiner

Recreate ssh host keys in Debian

Sometimes it is needed to recreate the used ssh host keys and this can be done quite easy on a Debian based system. View the code on [Gist](https://gist.github.com/austriancoder/65c4f0141bdea7f565c1aed21404fd19).

August 22, 2013 · 1 min · Christian Gmeiner

Update KDE in Ubuntu

On my work linux machine I am using Ubuntu with KDE. As the new 4.11 was released I thought it would be a good idea to update my current KDE installation. As a long-term Gentoo user it needed some more steps. sudo add-apt-repository ppa:kubuntu-ppa/backports sudo apt-get update sudo apt-get dist-upgrade I think it is really time to replace my Ubuntu installation with something different/better.

August 21, 2013 · 1 min · Christian Gmeiner

i.MX6 - DDR3 setup

The company I work for has designed a custom i.MX6 based board and I am the guy who does the board bring-up. For me the i.MX6 platform is a very good choice as support for the hardware in u-boot and the linux kernel is quite good. So it should not be too hard to get linux running on our custom board. But wait… as I learned from my coreboot activities – memory setup is the hardest and most importest part. The custom board has 1GB of DDR3 on it and I started to look how u-boot does the DDR setup. And there I read the term DCD – Device Configuration Data. ...

July 26, 2013 · 2 min · Christian Gmeiner

Rebuild a Debian package from source

In some rare cases I need to debug some networking protocols and my target of interest is NTP. I am debugging an issue where (maybe) NTP sets the current time backwards about two hours. My first candidate to look deeper is ntpd. But what do I see… debugging option is disabled in the Debian squeeze package of ntp. WTF?! – the only nice way to do useful debugging without wireshark. The good thing is that Ubuntu had the same miss-configuration and got it fixed. ...

June 12, 2013 · 1 min · Christian Gmeiner