2018-12-19 Ubuntu18.04 设置国内源

我们一般通过apt install或apt-get install安装软件,有朋友说在国内可能有些软件找不到,连接不到美国的Ubuntu源。
解决办法是添加国内源,国内有Ubuntu源的地方挺多,比如一些教育网,阿里等。阿里挺快的,下面以添加阿里源为例。
首先备份源文件,以免出错,/etc/apt/sources.list文件

axing@axing-rock:/etc/apt$ sudo cp sources.list sources.list.backup
axing@axing-rock:/etc/apt$ ls
apt.conf.d     sources.list         sources.list.d
preferences.d  sources.list.backup  trusted.gpg.d

查看版本号

axing@axing-rock:/etc/apt$ lsb_release -c
Codename:   bionic

访问阿里网站:https://opsx.alibaba.com/mirror
找到对应版本 For ubuntu 18.04(bionic) configuration
点右边的help

屏幕快照 2018-12-18 17.24.51.png

拷贝下来,sudo vim /etc/apt/sources.list 用这些替换原有的源链接,然后更新

axing@axing-rock:/etc/apt$ sudo apt update
Get:1 http://mirrors.aliyun.com/ubuntu bionic InRelease [242 kB]
Get:2 http://mirrors.aliyun.com/ubuntu bionic-security InRelease [83.2 kB]
Get:3 http://mirrors.aliyun.com/ubuntu bionic-updates InRelease [88.7 kB]
Get:4 http://mirrors.aliyun.com/ubuntu bionic-proposed InRelease [242 kB]
Get:5 http://mirrors.aliyun.com/ubuntu bionic-backports InRelease [74.6 kB]
Get:6 http://mirrors.aliyun.com/ubuntu bionic/multiverse Sources [181 kB]    
...中间略过
Fetched 66.2 MB in 3min 34s (309 kB/s)                                        
Reading package lists... Done
Building dependency tree       
Reading state information... Done
88 packages can be upgraded. Run 'apt list --upgradable' to see them.

由于我在国外,连阿里源比较慢,才309kB/s,这里就演示一下,待会再改回去:)。
如果要更新软件,接着 sudo apt upgrade就可以了。

你可能感兴趣的:(2018-12-19 Ubuntu18.04 设置国内源)