在 Windows 下大家可能會用到迅雷之類的下載工具,一般此類下載工具都是將網絡上的文件進行分塊、分片,下載完成后再組合成一個整體文件。但是在有流量限制的情況下,我們如何在 Linux 使用 cURL 分割下載大文件呢?
Linux 下最好用的大文件分割下載工具就是大名鼎鼎的cURL 了,它可以將大文件按用戶的設定進行下載分割,我們在下載完成后再將分好的文件組合一下就 OK 了。(北京it外包)
cURL 是一個跨平臺的下載工具,它支持 Linux、Windows 和 Mac OS X,這里我們以 Ubuntu 環境進行介紹。
使用cURL分割下載大文件
1. 使用之前,我們需要先安裝 cURL
sudo apt-get install curl
當然也可以到官網去下載手動安裝
cURL 官網下載
2. 舉個例子,我們把 Ubuntu 15.04 的 ISO 文件切成單個 200M 大小的分塊進行下載。
下載使用源阿里云開源鏡像站上的鏡像,該鏡像差不多1.1G。
curl --range 0-199999999 -o ubuntu-iso.part1 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.iso
–range 參數會告訴 cURL 首個文件只下載 200 MB,并重命名為 ubuntu-iso.part1
現在我們將后面的幾部分 200M 文件下載完:(IT外包服務)
curl --range 200000000-399999999 -o ubuntu-iso.part2 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 400000000-599999999 -o ubuntu-iso.part3 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 600000000-799999999 -o ubuntu-iso.part4 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 800000000-999999999 -o ubuntu-iso.part5 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 1000000000- -o ubuntu-iso.part6 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.iso
最后一部分不用指定文件結尾,下載完成后,我們將能夠看到 6 個分割好的文件。
現在我們將后面的幾部分 200M 文件下載完:
curl --range 200000000-399999999 -o ubuntu-iso.part2 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 400000000-599999999 -o ubuntu-iso.part3 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 600000000-799999999 -o ubuntu-iso.part4 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 800000000-999999999 -o ubuntu-iso.part5 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.isocurl --range 1000000000- -o ubuntu-iso.part6 http://mirrors.aliyun.com/ubuntu-releases/15.04/ubuntu-15.04-desktop-amd64.iso
最后一部分不用指定文件結尾,下載完成后,我們將能夠看到 6 個分割好的文件。(it外包)
下載完成!
艾銻無限是中國領先IT外包服務商,專業為企業提供IT運維外包、電腦維護、網絡維護、網絡布線、辦公設備維護、服務器維護、數據備份恢復、門禁監控、網站建設等多項IT服務外包,服務熱線:400-650-7820 聯系電話:010-62684652 咨詢QQ:1548853602 地址:北京市海淀區北京科技會展2號樓16D,用心服務每一天,為企業的發展提升更高的效率,創造更大的價值。
更多的IT外包信息盡在艾銻無限http://www.richjn.cn
相關文章