2009年1月25日 星期日

dvtm: Tiling window management for the console

簡單說就是類似 screen 加上 dwm 的功能

上面這張圖片左邊是主要的 console 右邊最上方是 ydict 中間是 htop 下方是 screen + irssi
整個畫面的配置就像是在使用 dwm 一樣 相當有趣~ :D

2009年1月15日 星期四

以 meld 當外部程式來使用 git diff

首先要建立一個簡單的 shell script

/usr/local/bin/git-meld
#!/bin/sh

meld $2 $5
然後執行
git config --global diff.external /usr/local/bin/git-meld
接下來就是爽爽地用 meld 來看 diff 囉~ :D

2009年1月4日 星期日

在 Debian Lenny 上使用 sudo

大概是 Ubuntu 使用久的關係有許多的習慣都已經在 Ubuntu 上面養成了
像是不直接使用 root 而是透過 sudo 來達成

於是將 sudo 裝起來
# aptitude install sudo

然後再執行
# visudo
增加一行 %sudo ALL=(ALL) ALL

然後再將使用者加到 sudo 這個群組裡面
# gpasswd -a fourdollars sudo

這樣就大功告成了~ :D

P.S.
$ sudo -k 可以馬上將暫時記住的 root 權限強制移除 (感謝 paulliu 提供的協助)