ubuntu18.04配置映象源
阿新 • • 發佈:2018-12-21
ubuntu下安裝軟體,一般都是通過命令sudo apt-get install package
來安裝想要的軟體,這個命令一般都是從一個叫做/etc/apt/source.list
檔案裡找下載地址,而預設的ubuntu也就是新安裝的ubuntu,下載軟體包都是從ubuntu官網下載,也就是這個source.list
包含的是ubuntu官網配置的地址。但這個ubuntu官網不在國內,而在國外,也就是要下載個包,還要從國外網站下,所以這樣下載速度自然就慢了。
還好國內也有自己的映象源,比如清華映象源,阿里映象源,這些映象源包含了咱們想要下的軟體包。這樣下載軟體就不必在國外網下,而直接從國內網站下載,這樣下載速度就快了很多。
尋找國內映象源
這裡找的是清華的映象源
然後下滑找到ubuntu,點選旁邊的問號.
然後選擇相應的ubuntu版本,我用的是18.04版本的,並複製下面欄位。
配置國內映象
首先拷貝一份/etc/apt/sources.list
檔案
$ sudo cp -v /etc/apt/sources.list /etc/apt/sources.list.backup
然後編輯sources.list
檔案
$ sudo gedit /etc/apt/sources.list
然後全選並刪除裡面的內容,新增清華映象源。
# 預設註釋了原始碼映象以提高 apt update 速度,如有需要可自行取消註釋
deb https: //mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
# 預釋出軟體源,不建議啟用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
更新源
配置好後,更新源
$ sudo apt-get update
這樣就可以進行sudo apt-get install
下載了。