Author Archives: Christer Edwards

Trying Out a New Theme

After toying with a few new themes I have activated one of them on this blog today. I’d love to hear your thoughts on the change. Better? Worse? Anything missing? Drop by, leave a comment, and tell me what you think. P.S. I know OpenID is broken. I’m looking into it..

SSH Pop Quiz

I spent a little bit of time trying to find an answer to this today but I was unsuccessful. I’m hoping one of you will have the secret for me. Situation: I’ve configured my .ssh/config file with profile and port information for the many servers I connect to on a regular basis. Problem: One of… Read More »

How To Find What Package Provided a File?

Earlier today I found myself in a situation where one Ubuntu machine was missing an executable available on the second. After trying to guess the package name a few times without success I pulled this little number out of my bag of tricks: cedwards@monkey:~$ dpkg -S $(which host) bind9-host: /usr/bin/host As you can see, this… Read More »

Simplify Dropbox URLs with Lighttpd

Some time ago I posted on how to simplify your dropbox URLs by using .htaccess files within Apache web server. Now that I’ve switched to Lighttpd I needed to find the equivalent. Here is what I came up with: ## dropbox redirection server.modules += ( “mod_redirect” ) $HTTP[“url”] =~ “^/dropbox/(.*)” { url.redirect = ( “^/dropbox/(.*)”… Read More »

Update: Enable Compositing the Easier Way

Based on the comments from the previous post I wanted to offer an update. A much simpler solution is to simply activate the compositing within recent versions of Gnome. gconftool-2 -s –type bool /apps/metacity/general/compositing_manager true This does introduce a known bug which can break enabling compiz however. If you want to activate compiz after toggling… Read More »

DNS Hiccup

We had a DNS hiccup overnite. My apologies. There always seems to be something that gets missed when doing a server migration. Turns out, when I cut off the old server, there were still DNS entries pointed there that I had missed. I believe this problem has been solved. Again, my apologies for the downtime.