Entries from 2012-08-04 to 1 day

patch from working tree in git repository

# create patch $ git diff --no-prefix > topic-name.patch # confirm $ patch --dry-run -p0 < topic-name.patch # exec $ patch -p0 < topic-name.patch

build tmux from source

Tmux's version in apt is 1.1. (latest is 1.6) So I built from source. There are some troublesome jobs. (needed libevent etc) This is memo of at that time. # install libevent $wget "http://downloads.sourceforge.net/project/levent/libevent/l…