Apt-fast 是一個用 axel 來加速 apt-get 軟件安裝的工具,通過這個工具在安裝軟件時,因為用到了 axel 的多線程下載功能,所以在下載軟件包時會比普通的 apt-get 要快上好幾倍。使用過程與aptget一樣,只需要將apt-get改成apt-fast即可。
Ubuntu &相關衍生版用戶可以通過以下命令安裝apt-fast:
sudo add-apt-repository ppa:apt-fast/stable
sudo apt-get update
sudo apt-get install apt-fast
安裝過程中,會讓你設置axel 下載的最大線程數,一般默認的5 即可:
安裝apt-fast
3 天前 上傳
apt-fast 的使用方法很簡單:
當你想要用apt-get 命令的時候,將apt-get 替換城apt-fast 即可,比如:
apt-get update 改成
apt-fast update
apt-fast install xxx 這樣使用。