Oct 17
Everything went well after upgrading my Ubuntu LTS installation to 10.04 LTS until I noticed that apache and lighttpd won't come up after a system reboot.
I thought it might be a small hickup with the upstart-migration.
Well, turns out it wasn't: In /var/log/boot.log i have found
Cannot assign requested address: make_sock: could not bind to address
Yep. Ubuntu wouldn't bring up my virtual network interfaces on time…
Gladfully someone else had this problem before.
May 24
If you don't mind, I'd share my tmux config with you. I have mapped the control key to <ctrl> + <a> because I also got some boxes with GNU Screen flying around and I just can't remap my fingers…
The pane movements are adapted from the standard VIM movements.
setw -g window-status-current-attr underscore
setw -g mode-keys vi
set -g status-keys vi
set -g prefix C-a
set-window-option -g utf8 on
set-window-option -g mode-keys vi
set-option -g mouse-select-pane on
set-option -g status on
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind C-d detach
Mar 28
If you're running into trouble when installing the ruby-filemagic gem on Mac OS X:
Installing ruby-filemagic (0.4.2) with native extensions /Users/bascht
/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/rubygems/installer.rb:483:in `rescue in block in build_extensions':
ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)
/Users/bascht/.rvm/rubies/ruby-1.9.2-p0/bin/ruby extconf.rb checking for magic_open() in -lmagic... no ***
ERROR: missing required library to compile this module
You might wanna hand over the path to your macports installation of file.
--with-magic-dir=/opt/local
Kudos to @Xylakant who stumbled over the correct way how to do this with bundler:
bundle config build.ruby-filemagic --with-magic-dir=/opt/local