2021-05-12 14:32:11
Ubuntu 18.04下使用apt-fast替換apt-get提高下載安裝速度
預設的apt-get install 有時候會下載非常慢,尤其是新增的一些ppa,這時候你就需要apt-fast這個軟體了。Apt-fast 是一款替代 apt-get 提升下載速度的軟體,apt-fast是apt-get和aptitude的shell指令碼包裝器, 安裝軟體時,通過使用多執行緒下載來給apt-get 提速,可以大大提高下載時間。測試後效果很好
首先參考下面兩篇把Ubuntu 18.04的更新源軟體源改為國內的。
- Ubuntu 18.04更改apt為阿里雲軟體源 https://www.linuxidc.com/Linux/2019-04/158157.htm
- Ubuntu 18.04修改預設源為國內源 https://www.linuxidc.com/Linux/2018-08/153709.htm
linuxidc@linuxidc:~/linuxidc.com$ sudo add-apt-repository ppa:apt-fast/stable
linuxidc@linuxidc:~/linuxidc.com$ sudo apt-get install apt-fast
選擇apt-get
在下一個對話方塊裡面,會問你是否要禁止apt-fast的確認對話方塊。選擇No並繼續安裝。如果你選擇Yes,apt-fast在安裝軟體包時不會問你確認與否。
在安裝期間,它將要求你輸入下載包的最大併行連結數。可以設定執行緒最大值1~16,我這裡設定到16
安裝之後使用方法和apt-get使用一樣.更新源列表,這是一個正在工作中的apt-fast包管理器:
linuxidc@linuxidc:~/linuxidc.com$ sudo apt-fast update
如果你想重新設定apt-fast選項,你可以使用命令:
sudo dpkg-reconfigure apt-fast
用法
與apt-get功能相似,我們可以使用:
apt-fast install package
apt-fast remove package
apt-fast update
apt-fast upgrade
apt-fast dist-upgrade
及更多命令。
建立別名(可選)
編輯 ~/.bashrc 檔案在末尾新增下面這行。
alias apt-get='apt-fast'
或者簡單執行以下命令在你的 ~/.bashrc 中新增它。
sudo echo "alias apt-get='apt-fast'" >> ~/.bashrc
從現在每當你執行apt-get命令去移除,更新和升級包時,它將在後台自動使用apt-fast。聽起來很酷吧?
在測試期間,當下載包時我發現它與apt-get相比非常快。試一試,你一定會贊同我的看法。感謝閱讀。
相關文章