Should you care about whether you can upgrade hardware?

An online discussion I was in today touched tangentially on the questionof how important it was to be able to upgrade the hardware on non-servermachines (and how upgradeable various sorts of them are). My view ismore and more that it probably isn't all that important.

(To be clear, I'm talking about post-purchase expansion down the road,not being to add necessary stuff at purchase time. If the machinedoesn't do what you need at the start, you just


王娟 遙遠


最近都在聽王娟
那是一把憂鬱之中又有點輕鬆的聲音
多得朋友子嬰推介
在邊度有書花30元買來這張名為“遙遠”的專輯
絕對超值

這是一張沒有華麗包裝的CD
封面沒有設計
歌詞就印在一張白紙上
不過十三首歌都動聽
王娟用一把結

寂然與卡夫卡合體


多年之前送對了一本書給一位其實不是很熟的朋友
令拙作在許多年之後有機會被改編成劇場作品
真是有因就有果

我後知後覺
今日才在莫兆忠導演的網誌中看到他談 月黑風高變蟲記

我想《月黑風高》和卡夫卡結合應該會產生奇妙的

How to quiesce NFS traffic the brute force way

Once upon a time, we had an NFS server. Like sensible people, weimmediately put the NFS server on a UPS, which meant that if we lostpower, we wanted to quiesce the NFS traffic before we had to shut itdown.

There are probably a lot of sophisticated solutions to this problem,involving things like hooking into the UPS monitoring system andtriggering events on power loss. We opted for a much simpler method:we didn't put the Ethernet switch that the server was connected toon a


瘋狂update!!!(更新意大利部分)















不知有多少人感受到這個blog最近的壓抑。其實是因為,世界女排錦標賽進行期間,因為以往在這裡邪巴西、數佢以往衰左既野,往往以輸波收場!痛定思痛,茲事體大,這次幾乎是隻字不提。而我是,你不讓我寫我想寫的東西,

強行攻佔道德高地

小脂出題,太皮推廣,不自量力,試寫出自己我版本。

1.你能接受自己的另一半對你的背叛嗎?
如果不知道就沒有不接受的問題,如果知道,當然也不能接受。

2.你認為男人嫖妓和女人偷情,誰更可恥?
可不可以倒過來說,

An annoying omission in the Solaris 8 DiskSuite toolset

We had one of our SAN RAID controllers die today (just the controller;the disks and the data were fine), and as a result I ran across anannoying omission in the DiskSuite toolset.

When the controller went kaboom, all of its logical drives stoppedresponding and DiskSuite marked all of the submirrors involved asneeding maintenance. When the controller was replaced, all of thelogical drives came back again, but the problem is that DiskSuite has nodirect way to clear the 'needs maintenance' state on the affected


修身中,請勿打擾。

打算明天在20度微涼天氣下玩wakeboard的我,發現了一件事 ── 我胖了很多,甚至是太多。

亦因為病了近兩個月的關係,全身都有明顯的水腫,眼底下有點黑眼圈。

我看著鏡中的自己,用雙手掩面,不忍心再看下去。

然後,感覺到眼

死亡筆記-最後的名字



上星期看了《死亡筆記-最後的名字》
看完電影妨似沒有看
因為早就知道了漫畫中更複雜的結局
這個電影版的電影感又不太強
當然已經改編得很聰明很流暢
可是看的時候總覺得導演在搬字過紙
看上一集電影時這種感覺不太強烈

Why the Bourne shell is not my favorite language

The difference between

for i in "a b"; do	mv -f $i $i-UBUNTU	...done

and

FOO="a b"for i in $FOO; do	mv -f $i $i-UBUNTU	...done

is subtle (in visual appearance) and easy to accidentally forget, but important .

(Fortunately I am doing test installations in VMWare thesedays, so a mistake is less tedious than it used to be .)