博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu更换成国内的源
阅读量:5019 次
发布时间:2019-06-12

本文共 1188 字,大约阅读时间需要 3 分钟。

登录root用户

su

#先备份原来的源列表文件
mv /etc/apt/sources.list /etc/apt/sourses.list.backup

#新建源列表文件

vim /etc/apt/sources.list

#加入源地址(推荐用阿里云源)
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

#更新软件列表
sudo apt-get update

#更新软件(把已安装的软件与刚刷新的软件列表中的版本进行对比,如果发现已安装的软件版本太低,就会提示更新)

sudo apt-get upgrade

 

转载于:https://www.cnblogs.com/maluscalc/p/11105467.html

你可能感兴趣的文章
机器学习---算法---k-means算法
查看>>
SQL 2005创建只读帐号
查看>>
学生成绩后台管理系统(一)需求分析
查看>>
ARDUBOY游戏开发之路(一) 初识ARDUBOY
查看>>
数据结构总结系列(四)——循环队列之杨辉三角
查看>>
谷歌薪水最高的20个职位:软件工程师一年88万
查看>>
Hello World!
查看>>
CSS鼠标效果手型效果
查看>>
数据库设计原则
查看>>
Nginx user_agent、if指令及全局变量
查看>>
来看看两种好玩的方法,扩展方法和分部方法
查看>>
Map开发实例
查看>>
TCP三次握手连接
查看>>
Windows Phone 7 ListBox 列表项渐显加载动画学习笔记
查看>>
【软工】提问回顾与个人总结
查看>>
《移动平台开发实践》第4周作业
查看>>
[spring-boot] 配置 MySQL
查看>>
外挂编写完全攻略(转帖)
查看>>
Largest prime factor
查看>>
'index.js' does not match the corresponding name on disk: '.\node_modules\
查看>>