修改ubuntu镜像源
Posted 我和你并没有不同
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改ubuntu镜像源相关的知识,希望对你有一定的参考价值。
- 清华大学开源软件镜像 https://mirrors.tuna.tsinghua.edu.cn/
- 中国科学技术大学开源软件镜像 https://mirrors.ustc.edu.cn/
- 北京理工大学 http://mirror.bit.edu.cn/
==================
查看当前版本:lsb_release -a uname -a 查看linux系统版本:cat /etc/issue
========修改apk镜像源
sed -i \'s/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g\' /etc/apk/repositories
apk update #更新最新镜像源列表
apk search #查找所以可用软件包
apk search -v #查找所以可用软件包及其描述内容
apk search -v \'acf*\' #通过软件包名称查找软件包
apk search -v -d \'docker\' #通过描述文件查找特定的软件包
apk add openssh #安装一个软件
apk add openssh openntp vim #安装多个软件
apk add --no-cache mysql-client #不使用本地镜像源缓存,相当于先执行update,再执行add
apk info #列出所有已安装的软件包
apk info -a zlib #显示完整的软件包信息
apk info --who-owns /sbin/lbu #显示指定文件属于的包
apk upgrade #升级所有软件
apk upgrade openssh #升级指定软件
apk upgrade openssh openntp vim #升级多个软件
apk add --upgrade busybox #指定升级部分软件包
apk del openssh #删除一个软件
apk --update add --no-cache
===========
当给apt增加镜像源时:
文件/etc/apt/sources.list是一个普通可编辑的文本文件,保存了ubuntu软件更新的源服务器的地址。和sources.list功能一样的是/etc/apt/sources.list.d/*.list(*代表一个文件名,只能由字母、数字、下划线、英文句号组成)。sources.list.d目录下的*.list文件为在单独文件中写入源的地址提供了一种方式,通常用来安装第三方的软件。
1)/etc/apt/sources.list.d/aliyun.list
2)
echo \' deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse deb-src 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-backports main restricted universe multiverse \' > /etc/apt/sources.list.d/aliyun.list
3)apt-get update
以上是关于修改ubuntu镜像源的主要内容,如果未能解决你的问题,请参考以下文章
网易Ubuntu镜像使用帮助(ubuntu15.10 修改源)
Ubuntu修改Ubuntu的apt-get源为国内镜像源的方法