ubuntu17.04之apt-get源

不要问我这么简单的也要写,我只想说在网上百度了一堆源,在笔者这里只有一个能用,悲伤的表情,还是记录一下吧

这个是清华的apt-get源,适用于ubuntu17.04


apt-get源文件目录 /etc/apt/sources.list ,记得先备份,如果不成功还可以改回来

deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security universe deb


修改完成之后,执行

apt-get clean                    #将 /var/cache/apt/archives/ 的 所有 deb 删掉,可以理解为 rm /var/cache/apt/archives/*.deb

apt-get update                #更新软件源中的所有软件列表


你可能感兴趣的:(ubuntu)