Pacman 是 Arch Linux 的包管理器,它在 Ubuntu 上不是默認的包管理器
要在 Ubuntu 上實現類似的并行下載功能,你可以使用 apt
或 apt-fast
。這里是如何使用 apt
進行并行下載的方法:
sudo apt update
aria2
,這是一個支持多線程下載的工具:sudo apt install aria2
sources.list.d
的目錄(如果尚未存在):sudo mkdir -p /etc/apt/sources.list.d
aria2.list
的文件,并將以下內容添加到其中:deb http://archive.ubuntu.com/ubuntu/ YOUR_UBUNTU_VERSION main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ YOUR_UBUNTU_VERSION-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ YOUR_UBUNTU_VERSION-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu YOUR_UBUNTU_VERSION-security main restricted universe multiverse
請將 YOUR_UBUNTU_VERSION
替換為你的 Ubuntu 版本,例如 focal
(對應 Ubuntu 20.04)。
aria2c --http-accept-gzip=true --http-no-cache=true --summary-interval=0 --download-result=hide --allow-overwrite=true --auto-file-renaming=false --retry-wait=2 --max-tries=5 --input-file=/etc/apt/sources.list.d/aria2.list --dir=/var/cache/apt/archives --out=packages.txt --remote-time=true --check-integrity --continue --max-concurrent-downloads=5 --split=5
這將會從 /etc/apt/sources.list.d/aria2.list
文件中讀取下載鏈接,并將下載的文件保存到 /var/cache/apt/archives
目錄。--max-concurrent-downloads=5
和 --split=5
參數分別設置了最大并發下載數和下載線程數。
apt
安裝軟件包,它將直接從緩存中獲取已下載的文件。請注意,這種方法并不是 Ubuntu 官方推薦的方法,而且可能會導致一些問題,例如軟件包版本不一致。在使用此方法時,請確保了解其潛在風險。