flashget for Linux - Readme
Flashget 網(wǎng)際快車 for Linux
Linux下面的多源下載工具
Features
- 下載功能與windows快車一樣(bt稍后加入)
- 多線程
- 下載速度快
- 無廣告,精簡
- 支持快車專用鏈
- 支持FireFox瀏覽器
測試環(huán)境
Ubuntu 10.04
Red Hat Enterprise Linux AS4.0
安裝
$tar zxvf wxFlashget-1.0.tar.gz
$cd wxFlashget-1.0
$sudo make install
wxFlashget就會安裝在您的/usr/loca/bin目錄下面名稱為wxFlashget
配置文件目錄位置: ~/.flashget
默認下載保存地址: ~/Download
Bug List
========
1,Ubunt 10.04下面無法啟動,提示找不到libexpat.so.0
error while loading shared libraries: libexpat.so.0: cannot open shared object file: No such file or directory
原因,編譯flashget使用的是libexpat.so.0版本,系統(tǒng)默認為libexpat.so.1.5.2,做軟連接即可.
$cd /usr/lib
$sudo ln -s libexpat.so.1.5.2 libexpat.so.0
$sudo ldconfig