2007年9月27日 星期四

[軟體介紹] MultiGet -- 在 linux 上一套類似 FlashGet 的下載軟體

許多剛從 Windows 平台上轉移到 Linux 的朋友
最常遇到的問題是...
FlashGet 有 for linux 的嗎?」
抱歉,沒有。
「 Linux 上有啥好用的續傳軟體阿?」
ㄜ...隨便講都一堆,預設就被安裝的 wget 純文字軟體,Gnome 環境的 Gwget,或 KDE 的 Kget等等,但是...介面還是跟 FlashGet 差異過大,功能也還差一大截。
於是,有人就提議說...那去建議做 FlashGet 的大陸仔,也出 for linux 的版本阿
這人回答真是妙阿 (其實...那個人就是我 XD)

於是有某長輩實在看不下去,就跳出來說...
同樣是對岸的同胞,有開發出一套很像 FlashGet 的軟體,叫做「MultiGet
到底有多像呢?
我抓了掃描砲彈(screenshots)來給大家比較一下
以下貼圖,前者都為 FlashGet 後者都為 MultiGet

主程式視窗介面


新增下載視窗介面



分割下載時,主程式視窗介面

夠像了吧 :P
不過能吃的協定就沒 FlashGet 這麼多了

廢話不多說,請看官們到此頁面下載最新安裝程式 :P
http://sourceforge.net/project/showfiles.php?group_id=174989

[教學]在 linux 上,替 ThinkPad 系列 laptop 加上中鍵捲動功能

前些日子跟某長輩聊天,發現有許多使用 ThinkPad 的 linuxer
竟然都沒去用 ThinkPad 的中鍵捲軸?
雖說沒用也不會怎樣,不過還是少了個好用的功能阿
( netman 大大,我絕對不會說是你的)
其實問題要解決很簡單...就只要加上兩行字就可以了
這邊還是以 Ubuntu 為例,其他 Linux 套件發行版本亦雷同
請跟著我這樣做
sudo gedit /etc/X11/xorg.conf
然後找出下面敘述的這一段

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection

把他改成
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
EndSection

然後重新啟動 X-Window 就可以使用中鍵捲動功能了 :D

[教學]在 Linux 上,替 ThinkPad 系列的 laptop 加上投影顯示

許多使用 ThinkPad 的朋友,如果是裝了 Linux 的話
常常會發現,當接上單槍投影機時
卻吃不到 RGB 線的訊號源
又不像 windows 那樣有 hotkey 可以切換
其實問題要解決很簡單...就只要加上一行字就可以了
這邊以 Ubuntu 為例,其他的 Linux 套件發行版本作法亦雷同
請跟著我這樣做
sudo gedit /etc/X11/xorg.conf
然後找出下面敘述的這一段

Section "Device"
Identifier "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Driver "i810"
BusID "PCI:0:2:0"
EndSection

把他改成
Section “Device”
Identifier "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Driver “i810″
Option “MonitorLayout” “CRT,LFP”
Option “Clone” “true”
BusID “PCI:0:2:0″
EndSection

然後重新啟動 X-Window 後
就可以一接上單槍投影機,就直接吃到 RGB 訊號了
完全不用再使用 hotkey 切換了 :D