1. 程式人生 > >[Mac] mac linux 多線程下載利器 axel

[Mac] mac linux 多線程下載利器 axel

conf mir make 幫助 htm 下載工具 ber con sdn

?> 之前做過一些文件下載的統計,發現谷歌瀏覽器chrome和火狐firefox, 一般都是單線程的下載文件,360瀏覽器卻是多線程的下載。


如今切換到了mac上,發現沒有360哪個瀏覽器,就像找個在linux或者mac下能夠多線程下載的工具。

linux mac 下載現狀

linux一般都是用的命令行下載wget curl盡管支持斷點續傳等。可是沒有多線程下載。非常多時候還是太慢。
mac下還經常使用瀏覽器下載,chrome自帶的下載也非常慢。須要一些多線程下載的拓展。

搜索到的資源

  • http://wowubuntu.com/pyaxelws.html 去chrome的應用商店沒找到。可能還須要hack或者其它替代方案,只是這是個思路
  • http://www.linuxb.in/2012/01/best-8-download-managersaccelerators.html 這篇文章提及了幾個大家經常使用的下載工具,比較全面

axel

非常多人推薦axel,我這裏使用它

幾個重要的鏈接

  • Axel’s 官方主頁
  • Freshmeat.net 頁面
  • Github的一個fork
  • 火狐瀏覽器插件
  • 安裝參考

安裝方式

Debian
apt-get install axel

Fedora
yum install axel

mac
brew install axel

源代碼安裝(官方的這個地址在我這不太好使)

cd ~/Download 
wget https://alioth.debian
.org/frs/download.php/3015/axel-2.4.tar.gz tar zxvf axel-2.4.tar.gz && cd axel-2.4 ./configure && make sudo make install

所以換了下地址 , 使用 https://github.com/angelj-a/axel github這個地址

# git clone https://github.com/angelj-a/axel.git
cd axel/
./configure && make && make install 

* centos6 以下正常安裝,mac 下測試也能夠正常使用*

簡單使用

axel -n 10 http://www.kernel.org/pub/linux/kernel/v2.6/patch-2.6.39.gz

很多其它的測試和使用方式請參考原文或者是 help幫助,自己的體驗是速度明顯快了非常多。

本文出自 “orangleliu筆記本” 博客,轉載請務必保留此出處http://blog.csdn.net/orangleliu/article/details/46834429 作者orangleliu 知識共享 署名-同樣方式共享 3.0協議

[Mac] mac linux 多線程下載利器 axel